├── .biomeignore ├── .cursor ├── mcp.json └── rules │ └── commit-message-guidelines.md ├── .dockerignore ├── .gitattributes ├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── changeset-version.js ├── dependabot.yml ├── stale.yml └── workflows │ ├── build_and_test.yaml │ ├── deploy_template_app.yaml │ └── release.yaml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .lintstagedrc ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json ├── mcp.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── backend │ ├── .env.template │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── intlayer.config.ts │ ├── package.json │ ├── scripts │ │ └── generate-embeddings.ts │ ├── src │ │ ├── controllers │ │ │ ├── ai.controller.ts │ │ │ ├── dictionary.controller.ts │ │ │ ├── eventListener.controller.ts │ │ │ ├── newsletter.controller.ts │ │ │ ├── oAuth2.controller.ts │ │ │ ├── organization.controller.ts │ │ │ ├── project.controller.ts │ │ │ ├── projectAccessKey.controller.ts │ │ │ ├── search.controller.ts │ │ │ ├── stripe.controller.ts │ │ │ ├── tag.controller.ts │ │ │ └── user.controller.ts │ │ ├── emails │ │ │ ├── InviteUserEmail.tsx │ │ │ ├── MagicLinkEmail.tsx │ │ │ ├── OAuthTokenCreatedEmail.tsx │ │ │ ├── PasswordChangeConfirmation.tsx │ │ │ ├── ResetUserPassword.tsx │ │ │ ├── SubscriptionPaymentCancellation.tsx │ │ │ ├── SubscriptionPaymentError.tsx │ │ │ ├── SubscriptionPaymentSuccess.tsx │ │ │ ├── ValidateUserEmail.tsx │ │ │ ├── Welcome.tsx │ │ │ └── index.ts │ │ ├── export.ts │ │ ├── index.ts │ │ ├── logger │ │ │ └── index.ts │ │ ├── middlewares │ │ │ ├── oAuth2.middleware.ts │ │ │ ├── request.middleware.ts │ │ │ └── sessionAuth.middleware.ts │ │ ├── models │ │ │ ├── dictionary.model.ts │ │ │ ├── discussion.model.ts │ │ │ ├── oAuth2.model.ts │ │ │ ├── organization.model.ts │ │ │ ├── project.model.ts │ │ │ ├── session.model.ts │ │ │ ├── tag.model.ts │ │ │ └── user.model.ts │ │ ├── routes │ │ │ ├── ai.routes.ts │ │ │ ├── dictionary.routes.ts │ │ │ ├── eventListener.routes.ts │ │ │ ├── newsletter.routes.ts │ │ │ ├── organization.routes.ts │ │ │ ├── project.routes.ts │ │ │ ├── search.routes.ts │ │ │ ├── stripe.routes.ts │ │ │ ├── tags.routes.ts │ │ │ └── user.routes.ts │ │ ├── schemas │ │ │ ├── dictionary.schema.ts │ │ │ ├── discussion.schema.ts │ │ │ ├── oAuth2.schema.ts │ │ │ ├── organization.schema.ts │ │ │ ├── plans.schema.ts │ │ │ ├── project.schema.ts │ │ │ ├── session.schema.ts │ │ │ ├── tag.schema.ts │ │ │ └── user.schema.ts │ │ ├── services │ │ │ ├── dictionary.service.ts │ │ │ ├── email.service.tsx │ │ │ ├── oAuth2.service.ts │ │ │ ├── organization.service.ts │ │ │ ├── project.service.ts │ │ │ ├── projectAccessKey.service.ts │ │ │ ├── subscription.service.ts │ │ │ ├── tag.service.ts │ │ │ └── user.service.ts │ │ ├── types │ │ │ ├── Routes.ts │ │ │ ├── dictionary.types.ts │ │ │ ├── discussion.types.ts │ │ │ ├── oAuth2.types.ts │ │ │ ├── organization.types.ts │ │ │ ├── plan.types.ts │ │ │ ├── project.types.ts │ │ │ ├── session.types.ts │ │ │ ├── tag.types.ts │ │ │ └── user.types.ts │ │ ├── utils │ │ │ ├── AI │ │ │ │ ├── askDocQuestion │ │ │ │ │ ├── PROMPT.md │ │ │ │ │ ├── askDocQuestion.ts │ │ │ │ │ ├── embeddings │ │ │ │ │ │ ├── CI_CD.md.json │ │ │ │ │ │ ├── autoFill.md.json │ │ │ │ │ │ ├── blog │ │ │ │ │ │ │ └── en │ │ │ │ │ │ │ │ ├── compiler_vs_declarative_i18n.json │ │ │ │ │ │ │ │ ├── i18n_using_next-i18next.json │ │ │ │ │ │ │ │ ├── i18n_using_next-intl.json │ │ │ │ │ │ │ │ ├── i18n_using_with_next-intl.json │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ ├── internationalization_and_SEO.json │ │ │ │ │ │ │ │ ├── intlayer_with_i18next.json │ │ │ │ │ │ │ │ ├── intlayer_with_next-i18next.json │ │ │ │ │ │ │ │ ├── intlayer_with_next-intl.json │ │ │ │ │ │ │ │ ├── intlayer_with_react-i18next.json │ │ │ │ │ │ │ │ ├── intlayer_with_react-intl.json │ │ │ │ │ │ │ │ ├── intlayer_with_vue-i18n.json │ │ │ │ │ │ │ │ ├── list_i18n_technologies │ │ │ │ │ │ │ │ ├── CMS │ │ │ │ │ │ │ │ │ ├── drupal.json │ │ │ │ │ │ │ │ │ ├── wix.json │ │ │ │ │ │ │ │ │ └── wordpress.json │ │ │ │ │ │ │ │ └── frameworks │ │ │ │ │ │ │ │ │ ├── angular.json │ │ │ │ │ │ │ │ │ ├── flutter.json │ │ │ │ │ │ │ │ │ ├── react-native.json │ │ │ │ │ │ │ │ │ ├── react.json │ │ │ │ │ │ │ │ │ ├── svelte.json │ │ │ │ │ │ │ │ │ └── vue.json │ │ │ │ │ │ │ │ ├── next-i18next_vs_next-intl_vs_intlayer.json │ │ │ │ │ │ │ │ ├── nextjs-multilingual-seo-comparison.json │ │ │ │ │ │ │ │ ├── rag_powered_documentation_assistant.json │ │ │ │ │ │ │ │ ├── react-i18next_vs_react-intl_vs_intlayer.json │ │ │ │ │ │ │ │ ├── vue-i18n_vs_intlayer.json │ │ │ │ │ │ │ │ └── what_is_internationalization.json │ │ │ │ │ │ ├── component_i18n.json │ │ │ │ │ │ ├── docs │ │ │ │ │ │ │ └── en │ │ │ │ │ │ │ │ ├── CI_CD.json │ │ │ │ │ │ │ │ ├── autoFill.json │ │ │ │ │ │ │ │ ├── bundle_optimization.json │ │ │ │ │ │ │ │ ├── cli │ │ │ │ │ │ │ │ ├── build.json │ │ │ │ │ │ │ │ ├── configuration.json │ │ │ │ │ │ │ │ ├── debug.json │ │ │ │ │ │ │ │ ├── doc-review.json │ │ │ │ │ │ │ │ ├── doc-translate.json │ │ │ │ │ │ │ │ ├── editor.json │ │ │ │ │ │ │ │ ├── fill.json │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ ├── list.json │ │ │ │ │ │ │ │ ├── live.json │ │ │ │ │ │ │ │ ├── pull.json │ │ │ │ │ │ │ │ ├── push.json │ │ │ │ │ │ │ │ ├── sdk.json │ │ │ │ │ │ │ │ ├── test.json │ │ │ │ │ │ │ │ ├── transform.json │ │ │ │ │ │ │ │ ├── version.json │ │ │ │ │ │ │ │ └── watch.json │ │ │ │ │ │ │ │ ├── compiler.json │ │ │ │ │ │ │ │ ├── component_i18n.json │ │ │ │ │ │ │ │ ├── configuration.json │ │ │ │ │ │ │ │ ├── dictionary │ │ │ │ │ │ │ │ ├── condition.json │ │ │ │ │ │ │ │ ├── content_file.json │ │ │ │ │ │ │ │ ├── enumeration.json │ │ │ │ │ │ │ │ ├── file.json │ │ │ │ │ │ │ │ ├── function_fetching.json │ │ │ │ │ │ │ │ ├── gender.json │ │ │ │ │ │ │ │ ├── insertion.json │ │ │ │ │ │ │ │ ├── markdown.json │ │ │ │ │ │ │ │ ├── nesting.json │ │ │ │ │ │ │ │ └── translation.json │ │ │ │ │ │ │ │ ├── formatters.json │ │ │ │ │ │ │ │ ├── how_works_intlayer.json │ │ │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ │ │ ├── interest_of_intlayer.json │ │ │ │ │ │ │ │ ├── intlayer_CMS.json │ │ │ │ │ │ │ │ ├── intlayer_cli.json │ │ │ │ │ │ │ │ ├── intlayer_visual_editor.json │ │ │ │ │ │ │ │ ├── intlayer_with_angular.json │ │ │ │ │ │ │ │ ├── intlayer_with_astro.json │ │ │ │ │ │ │ │ ├── intlayer_with_create_react_app.json │ │ │ │ │ │ │ │ ├── intlayer_with_express.json │ │ │ │ │ │ │ │ ├── intlayer_with_lynx+react.json │ │ │ │ │ │ │ │ ├── intlayer_with_nestjs.json │ │ │ │ │ │ │ │ ├── intlayer_with_next-i18next.json │ │ │ │ │ │ │ │ ├── intlayer_with_next-intl.json │ │ │ │ │ │ │ │ ├── intlayer_with_nextjs_14.json │ │ │ │ │ │ │ │ ├── intlayer_with_nextjs_15.json │ │ │ │ │ │ │ │ ├── intlayer_with_nextjs_16.json │ │ │ │ │ │ │ │ ├── intlayer_with_nextjs_page_router.json │ │ │ │ │ │ │ │ ├── intlayer_with_nuxt.json │ │ │ │ │ │ │ │ ├── intlayer_with_react_native+expo.json │ │ │ │ │ │ │ │ ├── intlayer_with_react_router_v7.json │ │ │ │ │ │ │ │ ├── intlayer_with_react_router_v7_fs_routes.json │ │ │ │ │ │ │ │ ├── intlayer_with_svelte_kit.json │ │ │ │ │ │ │ │ ├── intlayer_with_tanstack.json │ │ │ │ │ │ │ │ ├── intlayer_with_vite+preact.json │ │ │ │ │ │ │ │ ├── intlayer_with_vite+react.json │ │ │ │ │ │ │ │ ├── intlayer_with_vite+solid.json │ │ │ │ │ │ │ │ ├── intlayer_with_vite+svelte.json │ │ │ │ │ │ │ │ ├── intlayer_with_vite+vue.json │ │ │ │ │ │ │ │ ├── introduction.json │ │ │ │ │ │ │ │ ├── locale_mapper.json │ │ │ │ │ │ │ │ ├── mcp_server.json │ │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── express-intlayer │ │ │ │ │ │ │ │ │ └── t.json │ │ │ │ │ │ │ │ ├── intlayer │ │ │ │ │ │ │ │ │ ├── getConfiguration.json │ │ │ │ │ │ │ │ │ ├── getEnumeration.json │ │ │ │ │ │ │ │ │ ├── getHTMLTextDir.json │ │ │ │ │ │ │ │ │ ├── getLocaleLang.json │ │ │ │ │ │ │ │ │ ├── getLocaleName.json │ │ │ │ │ │ │ │ │ ├── getLocalizedUrl.json │ │ │ │ │ │ │ │ │ ├── getMultilingualUrls.json │ │ │ │ │ │ │ │ │ ├── getPathWithoutLocale.json │ │ │ │ │ │ │ │ │ ├── getPrefix.json │ │ │ │ │ │ │ │ │ ├── getTranslation.json │ │ │ │ │ │ │ │ │ └── getTranslationContent.json │ │ │ │ │ │ │ │ ├── next-intlayer │ │ │ │ │ │ │ │ │ ├── t.json │ │ │ │ │ │ │ │ │ ├── useDictionary.json │ │ │ │ │ │ │ │ │ ├── useIntlayer.json │ │ │ │ │ │ │ │ │ └── useLocale.json │ │ │ │ │ │ │ │ └── react-intlayer │ │ │ │ │ │ │ │ │ ├── t.json │ │ │ │ │ │ │ │ │ ├── useDictionary.json │ │ │ │ │ │ │ │ │ ├── useI18n.json │ │ │ │ │ │ │ │ │ ├── useIntlayer.json │ │ │ │ │ │ │ │ │ └── useLocale.json │ │ │ │ │ │ │ │ ├── per_locale_file.json │ │ │ │ │ │ │ │ ├── plugins │ │ │ │ │ │ │ │ └── sync-json.json │ │ │ │ │ │ │ │ ├── readme.json │ │ │ │ │ │ │ │ ├── releases │ │ │ │ │ │ │ │ ├── v6.json │ │ │ │ │ │ │ │ └── v7.json │ │ │ │ │ │ │ │ ├── roadmap.json │ │ │ │ │ │ │ │ ├── testing.json │ │ │ │ │ │ │ │ └── vs_code_extension.json │ │ │ │ │ │ └── frequent_questions │ │ │ │ │ │ │ └── en │ │ │ │ │ │ │ ├── SSR_Next_no_[locale].json │ │ │ │ │ │ │ ├── array_as_content_declaration.json │ │ │ │ │ │ │ ├── build_dictionaries.json │ │ │ │ │ │ │ ├── build_error_CI_CD.json │ │ │ │ │ │ │ ├── bun_set_up.json │ │ │ │ │ │ │ ├── customized_locale_list.json │ │ │ │ │ │ │ ├── domain_routing.json │ │ │ │ │ │ │ ├── esbuild_error.json │ │ │ │ │ │ │ ├── get_locale_cookie.json │ │ │ │ │ │ │ ├── intlayer_command_undefined.json │ │ │ │ │ │ │ ├── locale_incorect_in_url.json │ │ │ │ │ │ │ ├── package_version_error.json │ │ │ │ │ │ │ ├── static_rendering.json │ │ │ │ │ │ │ ├── translated_path_url.json │ │ │ │ │ │ │ └── unknown_command.json │ │ │ │ │ └── indexMarkdownFiles.ts │ │ │ │ ├── auditDictionary │ │ │ │ │ ├── PROMPT.md │ │ │ │ │ └── index.ts │ │ │ │ ├── auditDictionaryField │ │ │ │ │ ├── PROMPT.md │ │ │ │ │ └── index.ts │ │ │ │ ├── auditDictionaryMetadata │ │ │ │ │ └── index.ts │ │ │ │ ├── auditTag │ │ │ │ │ ├── PROMPT.md │ │ │ │ │ └── index.ts │ │ │ │ ├── autocomplete │ │ │ │ │ ├── PROMPT.md │ │ │ │ │ └── index.ts │ │ │ │ ├── customQuery │ │ │ │ │ └── index.ts │ │ │ │ └── translateJSON │ │ │ │ │ └── index.ts │ │ │ ├── access.ts │ │ │ ├── accessControl.ts │ │ │ ├── auth │ │ │ │ └── getAuth.ts │ │ │ ├── cors.ts │ │ │ ├── ensureArrayQueryFilter.ts │ │ │ ├── ensureMongoDocumentToObject.ts │ │ │ ├── errors │ │ │ │ ├── ErrorHandler.ts │ │ │ │ ├── ErrorsClass.ts │ │ │ │ ├── errorCodes.ts │ │ │ │ └── index.ts │ │ │ ├── extractJSON.test.ts │ │ │ ├── extractJSON.ts │ │ │ ├── filtersAndPagination │ │ │ │ ├── getDictionaryFiltersAndPagination.ts │ │ │ │ ├── getDiscussionFiltersAndPagination.ts │ │ │ │ ├── getFiltersAndPaginationFromBody.ts │ │ │ │ ├── getOrganizationFiltersAndPagination.ts │ │ │ │ ├── getProjectFiltersAndPagination.ts │ │ │ │ ├── getTagFiltersAndPagination.ts │ │ │ │ └── getUserFiltersAndPagination.ts │ │ │ ├── httpStatusCodes.ts │ │ │ ├── mapper │ │ │ │ ├── dictionary.ts │ │ │ │ ├── organization.ts │ │ │ │ ├── project.ts │ │ │ │ ├── session.ts │ │ │ │ ├── tag.ts │ │ │ │ └── user.ts │ │ │ ├── mergeFunctionTypes.ts │ │ │ ├── mongoDB │ │ │ │ ├── connectDB.ts │ │ │ │ └── types.ts │ │ │ ├── oAuth2.ts │ │ │ ├── permissions.ts │ │ │ ├── plan.ts │ │ │ ├── rateLimiter.ts │ │ │ ├── removeObjectKeys.ts │ │ │ ├── responseData.ts │ │ │ └── validation │ │ │ │ ├── validateArray.ts │ │ │ │ ├── validateDictionary.ts │ │ │ │ ├── validateEmail.ts │ │ │ │ ├── validateOrganization.ts │ │ │ │ ├── validatePhone.ts │ │ │ │ ├── validateProject.ts │ │ │ │ ├── validateString.ts │ │ │ │ ├── validateTag.ts │ │ │ │ └── validateUser.ts │ │ └── webhooks │ │ │ └── stripe.webhook.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ ├── types │ │ ├── oAuth2.d.ts │ │ └── tsdown.d.ts │ └── vitest.config.ts └── website │ ├── .env.template │ ├── .gitignore │ ├── Dockerfile │ ├── intlayer.config.ts │ ├── missingTranslation.test.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── assets │ │ ├── visual_editor.mp4 │ │ ├── visual_editor.png │ │ ├── visual_editor.vtt │ │ ├── visual_editor.webm │ │ └── visual_editor.webp │ ├── browserconfig.xml │ ├── cover.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── github-social-preview.png │ ├── logo.svg │ ├── manifest-icon-192.maskable.png │ ├── manifest-icon-512.maskable.png │ ├── mstile-150x150.png │ └── schema.json │ ├── src │ ├── Routes.ts │ ├── app │ │ ├── 404 │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── [locale] │ │ │ ├── (audit) │ │ │ │ ├── i18n-seo-scanner │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ ├── metadata.ts │ │ │ │ │ ├── page.content.ts │ │ │ │ │ └── page.tsx │ │ │ │ └── layout.tsx │ │ │ ├── (dashboard) │ │ │ │ ├── (admin) │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── discussions │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── organizations │ │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ ├── projects │ │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ └── users │ │ │ │ │ │ │ ├── [id] │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ └── metadata.ts │ │ │ │ ├── DashboardHydrationBoundary.tsx │ │ │ │ ├── dashboard │ │ │ │ │ ├── (editor) │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ ├── [dictionaryKey] │ │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── editor │ │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── tags │ │ │ │ │ │ │ ├── [tagKey] │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── WarmupClient.tsx │ │ │ │ │ ├── [...not-found] │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── organization │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── page.content.ts │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── pageContent.tsx │ │ │ │ │ ├── profile │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── projects │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── dashboardNavbar.content.ts │ │ │ │ ├── layout.tsx │ │ │ │ ├── metadata.content.ts │ │ │ │ └── metadata.ts │ │ │ ├── (docs) │ │ │ │ ├── blog │ │ │ │ │ ├── [[...slugs]] │ │ │ │ │ │ ├── index.content.ts │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── raw │ │ │ │ │ │ └── [...slugs] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── search │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── doc │ │ │ │ │ ├── [[...slugs]] │ │ │ │ │ │ ├── index.content.ts │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── chat │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── raw │ │ │ │ │ │ └── [...slugs] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── search │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── frequent-questions │ │ │ │ │ ├── [...slugs] │ │ │ │ │ │ ├── index.content.ts │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── metadata.ts │ │ │ │ │ ├── page.content.ts │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── raw │ │ │ │ │ │ └── [...slugs] │ │ │ │ │ │ └── route.ts │ │ │ │ ├── layout.tsx │ │ │ │ ├── privacy-notice │ │ │ │ │ ├── metadata.ts │ │ │ │ │ └── page.tsx │ │ │ │ └── terms-of-service │ │ │ │ │ ├── metadata.ts │ │ │ │ │ └── page.tsx │ │ │ ├── (landing) │ │ │ │ ├── 404 │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── [...not-found] │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ ├── metadata.ts │ │ │ │ │ ├── not-fount.content.ts │ │ │ │ │ └── page.tsx │ │ │ │ ├── auth │ │ │ │ │ ├── (authenticated) │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── password │ │ │ │ │ │ │ └── change │ │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── (not-authenticated) │ │ │ │ │ │ ├── 2fa │ │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── login │ │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ └── register │ │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── password │ │ │ │ │ │ ├── ask-reset │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── reset │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── contributors │ │ │ │ │ ├── page.content.ts │ │ │ │ │ └── page.tsx │ │ │ │ ├── demo │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ ├── metadata.ts │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── onboarding │ │ │ │ │ └── [[...details]] │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ │ ├── metadata.ts │ │ │ │ │ │ ├── page.content.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── pricing │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ ├── metadata.ts │ │ │ │ │ └── page.tsx │ │ │ ├── (playground) │ │ │ │ ├── layout.tsx │ │ │ │ └── playground │ │ │ │ │ ├── metadata.content.ts │ │ │ │ │ ├── metadata.ts │ │ │ │ │ ├── page.content.ts │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── metadata.content.ts │ │ │ └── metadata.ts │ │ ├── layout.tsx │ │ ├── manifest.ts │ │ ├── robots.ts │ │ └── sitemap.ts │ ├── assets │ │ ├── github.svg │ │ └── google.svg │ ├── components │ │ ├── AdminBreadcrumb │ │ │ ├── AdminBreadcrumb.tsx │ │ │ ├── adminBreadcrumb.content.ts │ │ │ └── index.ts │ │ ├── AdminSidebar │ │ │ ├── AdminSidebar.tsx │ │ │ ├── adminSidebar.content.ts │ │ │ └── index.ts │ │ ├── Auth │ │ │ ├── AskResetPassword │ │ │ │ ├── AskResetPasswordForm │ │ │ │ │ ├── AskResetPasswordForm.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── resetPasswordContent.content.ts │ │ │ │ │ ├── useAskResetPasswordSchema.content.ts │ │ │ │ │ └── useAskResetPasswordSchema.ts │ │ │ │ └── index.tsx │ │ │ ├── AuthenticationBarrier │ │ │ │ ├── AuthenticationBarrier.tsx │ │ │ │ ├── AuthenticationBarrierClient.tsx │ │ │ │ ├── AuthenticationBarrierServer.tsx │ │ │ │ └── accessValidation.ts │ │ │ ├── ChangePassword │ │ │ │ ├── ChangePasswordForm │ │ │ │ │ ├── ChangePasswordForm.tsx │ │ │ │ │ ├── changePasswordForm.content.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useChangePasswordSchema.content.ts │ │ │ │ │ └── useChangePasswordSchema.ts │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── DefinePassword │ │ │ │ ├── DefinePasswordForm │ │ │ │ │ ├── DefinePasswordForm.tsx │ │ │ │ │ ├── definePasswordForm.content.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useDefinePasswordSchema.content.ts │ │ │ │ │ └── useDefinePasswordSchema.ts │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── DeleteUser │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── useDeleteUserSchema.content.ts │ │ │ │ └── useDeleteUserSchema.ts │ │ │ ├── ExternalsLoginButtons │ │ │ │ ├── ExternalsLoginButtons.tsx │ │ │ │ ├── assets │ │ │ │ │ ├── AppleLogo.tsx │ │ │ │ │ ├── GithubLogo.tsx │ │ │ │ │ ├── GoogleLogo.tsx │ │ │ │ │ └── LinkedInLogo.tsx │ │ │ │ ├── externalsLoginButtons.content.ts │ │ │ │ └── index.ts │ │ │ ├── MagicLinkButton │ │ │ │ ├── MagicLinkButton.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── magicLinkButton.content.ts │ │ │ │ ├── magicLinkSchema.content.ts │ │ │ │ └── useMagicLinkSchema.ts │ │ │ ├── PassKeyButton │ │ │ │ ├── PassKeyButton.tsx │ │ │ │ ├── index.ts │ │ │ │ └── passkeyButton.content.ts │ │ │ ├── PasskeyManagement │ │ │ │ ├── AddPasskeyModal.tsx │ │ │ │ ├── PasskeyItem.tsx │ │ │ │ ├── PasskeyManagement.tsx │ │ │ │ ├── addPasskeyModal.content.ts │ │ │ │ ├── addPasskeySchema.content.ts │ │ │ │ ├── index.ts │ │ │ │ ├── passkeyItem.content.ts │ │ │ │ ├── passkeyManagement.content.ts │ │ │ │ ├── types.ts │ │ │ │ └── useAddPasskeySchema.ts │ │ │ ├── ProfilePanel.tsx │ │ │ ├── SignIn │ │ │ │ ├── SignInForm │ │ │ │ │ ├── SignInForm.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── signIn.content.ts │ │ │ │ │ ├── useSignInSchema.content.ts │ │ │ │ │ └── useSignInSchema.ts │ │ │ │ └── index.tsx │ │ │ ├── SignUp │ │ │ │ ├── SignUpForm │ │ │ │ │ ├── SignUpForm.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── signUpForm.content.ts │ │ │ │ │ ├── useSignUpSchema.content.ts │ │ │ │ │ └── useSignUpSchema.ts │ │ │ │ └── index.tsx │ │ │ ├── TotpForm │ │ │ │ ├── BackupCodeTab.content.ts │ │ │ │ ├── BackupCodeTab.tsx │ │ │ │ ├── TotpForm.content.ts │ │ │ │ ├── TotpForm.tsx │ │ │ │ └── index.ts │ │ │ ├── TwoFactorAuth │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── useTwoFactorAuthSchema.content.ts │ │ │ │ └── useTwoFactorAuthSchema.ts │ │ │ └── VerifyEmail │ │ │ │ ├── VerifyEmailForm.tsx │ │ │ │ ├── VerifyEmailSchema.ts │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ ├── BackgroundLayout │ │ │ └── index.tsx │ │ ├── BlogPage │ │ │ ├── BlogBreadCrumb.tsx │ │ │ ├── BlogNavList.tsx │ │ │ ├── BlogPageLayout.tsx │ │ │ ├── blogData.content.ts │ │ │ ├── blogData.ts │ │ │ ├── blogMetadata.content.ts │ │ │ ├── blogNavList.content.ts │ │ │ ├── frequentQuestionMetadata.content.ts │ │ │ └── types.ts │ │ ├── ChatBot │ │ │ ├── ChatBumble.tsx │ │ │ ├── FileReference.tsx │ │ │ ├── FormSection.tsx │ │ │ ├── MessagesList.tsx │ │ │ ├── fileReference.content.ts │ │ │ ├── formSection.content.ts │ │ │ ├── index.content.ts │ │ │ ├── index.tsx │ │ │ ├── useFormSectionSchema.content.ts │ │ │ └── useFormSectionSchema.ts │ │ ├── CodeRender │ │ │ └── index.tsx │ │ ├── Contributors │ │ │ ├── ContributorsList.tsx │ │ │ └── contributorsList.content.ts │ │ ├── Dashboard │ │ │ ├── AdminPage │ │ │ │ ├── AdminDiscussions │ │ │ │ │ ├── DiscussionAdminDetail.tsx │ │ │ │ │ ├── DiscussionsAdminPage.tsx │ │ │ │ │ └── discussionsAdminPage.content.ts │ │ │ │ ├── AdminOrganizations │ │ │ │ │ ├── OrganizationAdminDetailPage.tsx │ │ │ │ │ ├── OrganizationsAdminPage.tsx │ │ │ │ │ └── organizationsAdminPage.content.ts │ │ │ │ ├── AdminProjects │ │ │ │ │ ├── ProjectAdminDetailPage.tsx │ │ │ │ │ ├── ProjectsAdminPage.tsx │ │ │ │ │ └── projectsAdminPage.content.ts │ │ │ │ ├── AdminUsers │ │ │ │ │ ├── UserAdminDetailPage.tsx │ │ │ │ │ ├── UserAdminPage.tsx │ │ │ │ │ ├── useUserEditSchema.ts │ │ │ │ │ └── userAdminPage.content.ts │ │ │ │ └── index.tsx │ │ │ ├── ContentDashboard │ │ │ │ ├── ConfigurationProvider.tsx │ │ │ │ └── index.tsx │ │ │ ├── DashboardFooter │ │ │ │ ├── dashboardFooter.content.ts │ │ │ │ └── index.tsx │ │ │ ├── DashboardNavbar │ │ │ │ ├── DashboardNavbar.tsx │ │ │ │ ├── OrganizationDropdown.tsx │ │ │ │ ├── ProjectDropdown.tsx │ │ │ │ └── index.content.ts │ │ │ ├── DashboardSidebar │ │ │ │ ├── DashboardSidebar.tsx │ │ │ │ ├── DashboardSidebarClient.tsx │ │ │ │ ├── dashboardSidebar.content.ts │ │ │ │ └── index.ts │ │ │ ├── DictionaryListDashboard │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── Editor │ │ │ │ ├── ApplicationNotRunningView │ │ │ │ │ ├── ApplicationNotRunningView.tsx │ │ │ │ │ └── applicationNotRunningView.content.ts │ │ │ │ ├── ChekingApplicationStatutView │ │ │ │ │ ├── ChekingApplicationStatutView.tsx │ │ │ │ │ └── chekingApplicationStatutView.content.ts │ │ │ │ ├── DictionaryEditionDrawer │ │ │ │ │ ├── DictionaryEditionDrawer.tsx │ │ │ │ │ ├── dictionaryEditionDrawer.content.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useDictionaryEditionDrawer.ts │ │ │ │ ├── DictionaryListDrawer │ │ │ │ │ ├── DictionaryListDrawer.tsx │ │ │ │ │ ├── dictionaryListDrawer.content.ts │ │ │ │ │ ├── dictionaryListDrawerIdentifier.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── DictionaryLoaderDashboard.tsx │ │ │ │ ├── DictionaryLoaderPlayground.tsx │ │ │ │ ├── EditorLayout.tsx │ │ │ │ ├── EditorProvider.tsx │ │ │ │ ├── IframeController.tsx │ │ │ │ ├── LongPressMessage │ │ │ │ │ ├── index.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── NoApplicationURLView │ │ │ │ │ ├── NoApplicationURLView.tsx │ │ │ │ │ └── noApplicationURLView.content.ts │ │ │ │ ├── index.tsx │ │ │ │ └── useEditedContentPersistence.ts │ │ │ ├── OrganizationForm │ │ │ │ ├── DeleteOrganizationModal.tsx │ │ │ │ ├── Members │ │ │ │ │ ├── MembersForm.tsx │ │ │ │ │ ├── RemoveMemberModal.tsx │ │ │ │ │ ├── membersForm.content.ts │ │ │ │ │ ├── removeMemberModal.content.tsx │ │ │ │ │ ├── useMembersFormSchema.content.ts │ │ │ │ │ ├── useMembersFormSchema.ts │ │ │ │ │ ├── useNewMembersFormSchema.content.ts │ │ │ │ │ └── useNewMembersFormSchema.ts │ │ │ │ ├── NoOrganizationView.tsx │ │ │ │ ├── OrganizationCreationForm.tsx │ │ │ │ ├── OrganizationEditionForm.tsx │ │ │ │ ├── OrganizationForm.tsx │ │ │ │ ├── OrganizationList.tsx │ │ │ │ ├── Plan │ │ │ │ │ ├── PlanDetails.tsx │ │ │ │ │ └── plan.content.ts │ │ │ │ ├── deleteOrganizationModal.content.tsx │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.ts │ │ │ │ ├── organizationList.content.ts │ │ │ │ ├── useOrganizationFormSchema.content.ts │ │ │ │ └── useOrganizationFormSchema.ts │ │ │ ├── ProfileForm │ │ │ │ ├── ProfileForm.tsx │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useProfileFormSchema.content.ts │ │ │ │ └── useProfileFormSchema.ts │ │ │ ├── ProjectForm │ │ │ │ ├── AccessKey │ │ │ │ │ ├── AccessKeyCreationForm.tsx │ │ │ │ │ ├── AccessKeyForm.tsx │ │ │ │ │ ├── AccessKeyFormSchema.ts │ │ │ │ │ ├── accessKeyCreateForm.content.ts │ │ │ │ │ ├── accessKeyForm.content.ts │ │ │ │ │ ├── useAccessKeyCreationFormSchema.content.ts │ │ │ │ │ └── useAccessKeyCreationFormSchema.ts │ │ │ │ ├── Config │ │ │ │ │ ├── ConfigDetails.tsx │ │ │ │ │ └── configDetails.content.ts │ │ │ │ ├── DeleteProjectModal.tsx │ │ │ │ ├── Members │ │ │ │ │ ├── MembersKeyForm.tsx │ │ │ │ │ ├── useMembersForm.content.ts │ │ │ │ │ └── useMembersFormSchema.ts │ │ │ │ ├── NoProjectView.tsx │ │ │ │ ├── ProjectCreationForm.tsx │ │ │ │ ├── ProjectEditionForm.tsx │ │ │ │ ├── ProjectForm.tsx │ │ │ │ ├── ProjectList.tsx │ │ │ │ ├── deleteProjectModal.content.tsx │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.ts │ │ │ │ ├── projectList.content.ts │ │ │ │ ├── useProjectFormSchema.content.ts │ │ │ │ └── useProjectFormSchema.ts │ │ │ ├── TagForm │ │ │ │ ├── DeleteTagModal.tsx │ │ │ │ ├── NoTagView.tsx │ │ │ │ ├── TagCreationForm.tsx │ │ │ │ ├── TagDetails.tsx │ │ │ │ ├── TagEditionForm.tsx │ │ │ │ ├── TagForm.tsx │ │ │ │ ├── TagList.tsx │ │ │ │ ├── TagsDictionariesList.tsx │ │ │ │ ├── deleteTagModal.content.tsx │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.ts │ │ │ │ ├── tagDetails.content.ts │ │ │ │ ├── tagList.content.ts │ │ │ │ ├── tagsDictionariesList.content.ts │ │ │ │ ├── useTagFormSchema.content.ts │ │ │ │ └── useTagFormSchema.ts │ │ │ └── UserForm │ │ │ │ ├── UserDeleteAction.tsx │ │ │ │ ├── UserEditForm.tsx │ │ │ │ ├── userDeleteAction.content.ts │ │ │ │ └── userEditForm.content.ts │ │ ├── DemoPage │ │ │ ├── AnimatedDiv.tsx │ │ │ ├── assets │ │ │ │ ├── dark-screenshot.png │ │ │ │ └── light-screenshot.png │ │ │ ├── demo.content.ts │ │ │ ├── index.tsx │ │ │ ├── landingParagraph.ar.md │ │ │ ├── landingParagraph.de.md │ │ │ ├── landingParagraph.en-GB.md │ │ │ ├── landingParagraph.en.md │ │ │ ├── landingParagraph.es.md │ │ │ ├── landingParagraph.fr.md │ │ │ ├── landingParagraph.hi.md │ │ │ ├── landingParagraph.id.md │ │ │ ├── landingParagraph.it.md │ │ │ ├── landingParagraph.ja.md │ │ │ ├── landingParagraph.ko.md │ │ │ ├── landingParagraph.pl.md │ │ │ ├── landingParagraph.pt.md │ │ │ ├── landingParagraph.ru.md │ │ │ ├── landingParagraph.tr.md │ │ │ ├── landingParagraph.vi.md │ │ │ └── landingParagraph.zh.md │ │ ├── DocPage │ │ │ ├── ApplicationTemplateMessage │ │ │ │ ├── GithubLogo.tsx │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── AsideNavigation │ │ │ │ ├── AsideNavigation.tsx │ │ │ │ └── asideNavigation.content.ts │ │ │ ├── ContributionMessage │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── CopyMarkdownMessage │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── DocBreadCrumb.tsx │ │ │ ├── DocHeader │ │ │ │ ├── DocHeader.tsx │ │ │ │ └── docHeader.content.ts │ │ │ ├── DocNavList.tsx │ │ │ ├── DocPageLayout.tsx │ │ │ ├── DocPageNavigation │ │ │ │ └── DocPageNavigation.tsx │ │ │ ├── DocumentationRender.tsx │ │ │ ├── History │ │ │ │ ├── docHistory.content.ts │ │ │ │ └── index.tsx │ │ │ ├── MCPMessage │ │ │ │ ├── McpLogo.tsx │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── NavTitles │ │ │ │ ├── NavTitles.tsx │ │ │ │ └── navTitles.content.ts │ │ │ ├── ScrollWell.tsx │ │ │ ├── Search │ │ │ │ ├── SearchTrigger.tsx │ │ │ │ ├── SearchView.tsx │ │ │ │ ├── searchTrigger.content.ts │ │ │ │ └── searchView.content.ts │ │ │ ├── SectionScroller.tsx │ │ │ ├── SummarizeAI │ │ │ │ ├── AntropicLogo.tsx │ │ │ │ ├── ChatGPTLogo.tsx │ │ │ │ ├── DeepSeekLogo.tsx │ │ │ │ ├── GeminiLogo.tsx │ │ │ │ ├── GoogleAILogo.tsx │ │ │ │ ├── GrokLogo.tsx │ │ │ │ ├── MistralLogo.tsx │ │ │ │ ├── PerplexityLogo.tsx │ │ │ │ ├── SummarizeAI.tsx │ │ │ │ └── summarizeAI.content.ts │ │ │ ├── TranslatedContentMessage │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── YoutubeVideoMessage │ │ │ │ ├── YoutubeLogo.tsx │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── docData.content.ts │ │ │ ├── docData.ts │ │ │ ├── docMetadata.content.ts │ │ │ ├── docNavList.content.ts │ │ │ ├── types.ts │ │ │ ├── useActiveSection.ts │ │ │ └── useTitlesTree.ts │ │ ├── EmailRegistrationToast │ │ │ ├── index.content.tsx │ │ │ ├── index.tsx │ │ │ └── useEmailSchema.ts │ │ ├── Footer │ │ │ ├── footer.content.ts │ │ │ └── index.tsx │ │ ├── GithubLogo.tsx │ │ ├── Globe │ │ │ └── Globe.tsx │ │ ├── IDE │ │ │ └── index.tsx │ │ ├── LandingPage │ │ │ ├── AIABTestingSection │ │ │ │ ├── ai-ab-testing-section.content.ts │ │ │ │ └── index.tsx │ │ │ ├── AuditSection │ │ │ │ └── index.tsx │ │ │ ├── AvailableTechnoSection │ │ │ │ ├── Angular.tsx │ │ │ │ ├── Astro.tsx │ │ │ │ ├── Express.tsx │ │ │ │ ├── Lynx.tsx │ │ │ │ ├── NestJS.tsx │ │ │ │ ├── Nextjs.tsx │ │ │ │ ├── Nuxt.tsx │ │ │ │ ├── Preact.tsx │ │ │ │ ├── Reactjs.tsx │ │ │ │ ├── Solid.tsx │ │ │ │ ├── Svelte.tsx │ │ │ │ ├── Tanstack.tsx │ │ │ │ ├── Vitejs.tsx │ │ │ │ ├── Vuejs.tsx │ │ │ │ ├── available-techno-section.content.ts │ │ │ │ └── index.tsx │ │ │ ├── ChatBotModal │ │ │ │ ├── chatBotModal.content.ts │ │ │ │ └── index.tsx │ │ │ ├── CommonQuestionsSection │ │ │ │ ├── CommonQuestions.tsx │ │ │ │ └── commonQuestions.content.ts │ │ │ ├── DemoSection │ │ │ │ ├── DemoCodeSandbox │ │ │ │ │ └── index.tsx │ │ │ │ ├── DemoYoutube │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── FeaturesSection │ │ │ │ ├── AutocompletionSection │ │ │ │ │ ├── index.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── CompilerSection │ │ │ │ │ ├── Visual.tsx │ │ │ │ │ ├── content │ │ │ │ │ │ ├── component-content.md │ │ │ │ │ │ ├── config-file.md │ │ │ │ │ │ └── vite-config.md │ │ │ │ │ ├── demo.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── IDESection │ │ │ │ │ ├── content │ │ │ │ │ │ ├── client-component.md │ │ │ │ │ │ ├── client-content.md │ │ │ │ │ │ ├── config-file.md │ │ │ │ │ │ ├── server-component.md │ │ │ │ │ │ └── server-content.md │ │ │ │ │ └── index.tsx │ │ │ │ ├── MarkdownSection │ │ │ │ │ ├── index.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── MultilingualSection │ │ │ │ │ ├── index.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── TestSection │ │ │ │ │ ├── index.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── VisualEditorSection │ │ │ │ │ ├── index.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── LandingSection │ │ │ │ ├── ActionButtons.tsx │ │ │ │ ├── AnimatedDescription.tsx │ │ │ │ ├── BlurInText.tsx │ │ │ │ ├── ChevronDown.tsx │ │ │ │ ├── TechLogos.tsx │ │ │ │ ├── action-button.content.ts │ │ │ │ ├── index.tsx │ │ │ │ └── landing-section.content.ts │ │ │ ├── LanguageSection │ │ │ │ └── index.tsx │ │ │ ├── WhyToChoseIntlayerSection │ │ │ │ ├── AnimatedDiv.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── why-to-chose-intlayer.content.ts │ │ │ └── index.tsx │ │ ├── Link │ │ │ └── Link.tsx │ │ ├── LocaleSwitcher │ │ │ ├── LocaleSwitcher.tsx │ │ │ ├── localeSwitcher.content.ts │ │ │ └── useLocaleSearch.ts │ │ ├── Navbar │ │ │ ├── index.tsx │ │ │ └── navbar.content.ts │ │ ├── OnboardPage │ │ │ ├── ConfirmationsStep │ │ │ │ ├── ConfirmationsStep.tsx │ │ │ │ └── index.content.ts │ │ │ ├── DefinePasswordStep │ │ │ │ ├── DefinePasswordStepForm.tsx │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useDefinePasswordSchema.content.ts │ │ │ │ └── useDefinePasswordSchema.ts │ │ │ ├── PaymentStep │ │ │ │ ├── PaymentStepForm.tsx │ │ │ │ ├── index.content.ts │ │ │ │ └── index.ts │ │ │ ├── RegisterStep │ │ │ │ ├── RegisterStepForm.tsx │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── useRegisterSchema.content.ts │ │ │ │ └── useRegisterSchema.ts │ │ │ ├── SetUpOrganizationStep │ │ │ │ ├── SetUpOrganizationStepForm.tsx │ │ │ │ ├── index.content.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useSetUpOrganizationSchema.content.ts │ │ │ │ └── useSetUpOrganizationSchema.ts │ │ │ ├── StepLayout.tsx │ │ │ ├── VerifyEmailStep │ │ │ │ ├── VerifyEmailSchema.ts │ │ │ │ ├── VerifyEmailStepForm.tsx │ │ │ │ ├── index.content.ts │ │ │ │ └── index.ts │ │ │ ├── formatOnboardUrl.ts │ │ │ ├── getPlanDetails.ts │ │ │ ├── index.tsx │ │ │ ├── retrievePriceId.ts │ │ │ ├── stepLayout.content.ts │ │ │ ├── steps.ts │ │ │ └── useStep.ts │ │ ├── PricingPage │ │ │ ├── PricingCarousel.tsx │ │ │ ├── PricingColumn.tsx │ │ │ ├── data.content.ts │ │ │ └── index.tsx │ │ ├── ProductHunt │ │ │ ├── index.content.tsx │ │ │ └── index.tsx │ │ ├── ProfileDropdown │ │ │ ├── ProfileDropDown │ │ │ │ └── index.tsx │ │ │ └── ProfileDropdown.tsx │ │ ├── ScannerPage │ │ │ ├── Analyzer │ │ │ │ ├── AnalyzerLoading.tsx │ │ │ │ ├── Form │ │ │ │ │ ├── AnalyzerForm.tsx │ │ │ │ │ ├── analyzerForm.content.ts │ │ │ │ │ └── useAnalyzerUrlSchema.ts │ │ │ │ └── Results │ │ │ │ │ ├── AnalyzerPageResults.tsx │ │ │ │ │ ├── AnalyzerSiteResults.tsx │ │ │ │ │ ├── FieldItem.tsx │ │ │ │ │ ├── PageGroupsList.tsx │ │ │ │ │ ├── RobotsSection.tsx │ │ │ │ │ ├── SitemapSection.tsx │ │ │ │ │ ├── analyzerResults.content.ts │ │ │ │ │ └── types.ts │ │ │ ├── LocalizationAnalyzer.tsx │ │ │ ├── index.tsx │ │ │ └── localizationAnalyzer.content.ts │ │ ├── ServiceWorker │ │ │ ├── ServiceWorkerSubscriber.tsx │ │ │ └── useServiceWorker.ts │ │ ├── TableOfContents │ │ │ ├── TableOfContents.tsx │ │ │ └── index.ts │ │ ├── Test │ │ │ ├── test.content.ts │ │ │ └── test.md │ │ └── ThemeSwitcherDropDown │ │ │ ├── DesktopThemeSwitcher.tsx │ │ │ ├── MobileThemeSwitcher.tsx │ │ │ ├── SwitchThemeSwitcher.tsx │ │ │ └── index.tsx │ ├── globals.css │ ├── hooks │ │ ├── useFirstConsultation.ts │ │ └── useSearchParamState.ts │ ├── layouts │ │ ├── PageContentLayout.tsx │ │ ├── PageLayout.tsx │ │ └── RootHTMLLayout.tsx │ ├── monaco.css │ ├── providers │ │ ├── AnimatePresenceProvider.tsx │ │ ├── AppProviders.tsx │ │ ├── FirstConsultationProvider.tsx │ │ ├── IntlayerMarkdownProvider.tsx │ │ └── ThemeProvider.tsx │ ├── proxy.ts │ ├── shiki.css │ ├── structuredData │ │ ├── BreadcrumbsHeader.tsx │ │ ├── CreativeWorkHeader.tsx │ │ ├── ProductHeader.tsx │ │ ├── SoftwareApplication.tsx │ │ ├── WebsiteHeader.tsx │ │ ├── creativeWorkHeader.content.ts │ │ ├── productHeader.content.ts │ │ ├── softwareApplication.content.ts │ │ └── website.content.ts │ └── utils │ │ ├── cn.ts │ │ ├── getServerIntlayerAPI.ts │ │ ├── getSessionData.ts │ │ ├── markdown.test.ts │ │ ├── markdown.ts │ │ └── queryProxy.ts │ ├── tsconfig.json │ └── types │ └── markdown.d.ts ├── biome.json ├── bun.lock ├── commitlint.config.ts ├── docs ├── .env.template ├── .gitignore ├── README.md ├── assets │ ├── AI_translation.png │ ├── CMS.png │ ├── autocompletion.png │ ├── automate_json_translation.png │ ├── bundle.png │ ├── bundle_no_optimization.png │ ├── compiler.jpg │ ├── config_file.png │ ├── content_retrieval.png │ ├── cover.png │ ├── demo_video.gif │ ├── file_tree.png │ ├── frameworks.png │ ├── i18n.webp │ ├── i18n_2.webp │ ├── i18next-next-intl-intlayer.png │ ├── interoperability.png │ ├── intlayer_editor_hover_content.png │ ├── javascript_content_management.png │ ├── live_sync_flow_scema.svg │ ├── live_sync_flow_scema.txt │ ├── live_sync_logic_schema.svg │ ├── live_sync_logic_schema.txt │ ├── logo.png │ ├── markdown.png │ ├── mcp.png │ ├── packages_dependency_graph.svg │ ├── packages_dependency_graph.txt │ ├── pain_i18n.webp │ ├── per_locale_content_declaration_file.png │ ├── project_stucture_18n_vs_intlayer.png │ ├── rag_flow.svg │ ├── react_clean_architecture.png │ ├── server_component.png │ ├── server_vs_client_component_implementation.png │ ├── star_banner.png │ ├── static_rendering.png │ ├── translation_error.png │ ├── url_routing.png │ ├── visual_editor.gif │ ├── visual_editor.png │ ├── vs_code_extension_demo.gif │ └── vscode_extension.png ├── blog │ ├── ar │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── de │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── en-GB │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── en │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── es │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── fr │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── hi │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── id │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── it │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── ja │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── ko │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── pl │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── pt │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── ru │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── tr │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ ├── vi │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ │ ├── CMS │ │ │ │ ├── drupal.md │ │ │ │ ├── wix.md │ │ │ │ └── wordpress.md │ │ │ └── frameworks │ │ │ │ ├── angular.md │ │ │ │ ├── flutter.md │ │ │ │ ├── react-native.md │ │ │ │ ├── react.md │ │ │ │ ├── svelte.md │ │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md │ └── zh │ │ ├── compiler_vs_declarative_i18n.md │ │ ├── i18n_using_next-i18next.md │ │ ├── i18n_using_next-intl.md │ │ ├── index.md │ │ ├── internationalization_and_SEO.md │ │ ├── intlayer_with_i18next.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_react-i18next.md │ │ ├── intlayer_with_react-intl.md │ │ ├── intlayer_with_vue-i18n.md │ │ ├── list_i18n_technologies │ │ ├── CMS │ │ │ ├── drupal.md │ │ │ ├── wix.md │ │ │ └── wordpress.md │ │ └── frameworks │ │ │ ├── angular.md │ │ │ ├── flutter.md │ │ │ ├── react-native.md │ │ │ ├── react.md │ │ │ ├── svelte.md │ │ │ └── vue.md │ │ ├── next-i18next_vs_next-intl_vs_intlayer.md │ │ ├── nextjs-multilingual-seo-comparison.md │ │ ├── rag_powered_documentation_assistant.md │ │ ├── react-i18next_vs_react-intl_vs_intlayer.md │ │ ├── vue-i18n_vs_intlayer.md │ │ └── what_is_internationalization.md ├── docs │ ├── ar │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── de │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── en-GB │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── en │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── es │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── index.md │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── index.md │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── fr │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── index.md │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── hi │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ ├── getTranslationContent.md │ │ │ │ └── index.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── id │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── it │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── ja │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── ko │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── pl │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── pt │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── ru │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── tr │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ ├── vi │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ │ ├── build.md │ │ │ ├── configuration.md │ │ │ ├── debug.md │ │ │ ├── doc-review.md │ │ │ ├── doc-translate.md │ │ │ ├── editor.md │ │ │ ├── fill.md │ │ │ ├── index.md │ │ │ ├── list.md │ │ │ ├── live.md │ │ │ ├── pull.md │ │ │ ├── push.md │ │ │ ├── sdk.md │ │ │ ├── test.md │ │ │ ├── transform.md │ │ │ ├── version.md │ │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ │ ├── condition.md │ │ │ ├── content_file.md │ │ │ ├── enumeration.md │ │ │ ├── file.md │ │ │ ├── function_fetching.md │ │ │ ├── gender.md │ │ │ ├── insertion.md │ │ │ ├── markdown.md │ │ │ ├── nesting.md │ │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ │ ├── express-intlayer │ │ │ │ └── t.md │ │ │ ├── intlayer │ │ │ │ ├── getConfiguration.md │ │ │ │ ├── getEnumeration.md │ │ │ │ ├── getHTMLTextDir.md │ │ │ │ ├── getLocaleLang.md │ │ │ │ ├── getLocaleName.md │ │ │ │ ├── getLocalizedUrl.md │ │ │ │ ├── getMultilingualUrls.md │ │ │ │ ├── getPathWithoutLocale.md │ │ │ │ ├── getPrefix.md │ │ │ │ ├── getTranslation.md │ │ │ │ └── getTranslationContent.md │ │ │ ├── next-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ │ └── react-intlayer │ │ │ │ ├── t.md │ │ │ │ ├── useDictionary.md │ │ │ │ ├── useI18n.md │ │ │ │ ├── useIntlayer.md │ │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ │ ├── v6.md │ │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md │ └── zh │ │ ├── CI_CD.md │ │ ├── autoFill.md │ │ ├── bundle_optimization.md │ │ ├── cli │ │ ├── build.md │ │ ├── configuration.md │ │ ├── debug.md │ │ ├── doc-review.md │ │ ├── doc-translate.md │ │ ├── editor.md │ │ ├── fill.md │ │ ├── index.md │ │ ├── list.md │ │ ├── live.md │ │ ├── pull.md │ │ ├── push.md │ │ ├── sdk.md │ │ ├── test.md │ │ ├── transform.md │ │ ├── version.md │ │ └── watch.md │ │ ├── compiler.md │ │ ├── component_i18n.md │ │ ├── configuration.md │ │ ├── dictionary │ │ ├── condition.md │ │ ├── content_file.md │ │ ├── enumeration.md │ │ ├── file.md │ │ ├── function_fetching.md │ │ ├── gender.md │ │ ├── insertion.md │ │ ├── markdown.md │ │ ├── nesting.md │ │ └── translation.md │ │ ├── formatters.md │ │ ├── how_works_intlayer.md │ │ ├── index.md │ │ ├── interest_of_intlayer.md │ │ ├── intlayer_CMS.md │ │ ├── intlayer_visual_editor.md │ │ ├── intlayer_with_angular.md │ │ ├── intlayer_with_astro.md │ │ ├── intlayer_with_create_react_app.md │ │ ├── intlayer_with_express.md │ │ ├── intlayer_with_lynx+react.md │ │ ├── intlayer_with_nestjs.md │ │ ├── intlayer_with_next-i18next.md │ │ ├── intlayer_with_next-intl.md │ │ ├── intlayer_with_nextjs_14.md │ │ ├── intlayer_with_nextjs_15.md │ │ ├── intlayer_with_nextjs_16.md │ │ ├── intlayer_with_nextjs_page_router.md │ │ ├── intlayer_with_nuxt.md │ │ ├── intlayer_with_react_native+expo.md │ │ ├── intlayer_with_react_router_v7.md │ │ ├── intlayer_with_react_router_v7_fs_routes.md │ │ ├── intlayer_with_svelte_kit.md │ │ ├── intlayer_with_tanstack.md │ │ ├── intlayer_with_vite+preact.md │ │ ├── intlayer_with_vite+react.md │ │ ├── intlayer_with_vite+solid.md │ │ ├── intlayer_with_vite+svelte.md │ │ ├── intlayer_with_vite+vue.md │ │ ├── introduction.md │ │ ├── locale_mapper.md │ │ ├── mcp_server.md │ │ ├── packages │ │ ├── express-intlayer │ │ │ └── t.md │ │ ├── intlayer │ │ │ ├── getConfiguration.md │ │ │ ├── getEnumeration.md │ │ │ ├── getHTMLTextDir.md │ │ │ ├── getLocaleLang.md │ │ │ ├── getLocaleName.md │ │ │ ├── getLocalizedUrl.md │ │ │ ├── getMultilingualUrls.md │ │ │ ├── getPathWithoutLocale.md │ │ │ ├── getPrefix.md │ │ │ ├── getTranslation.md │ │ │ └── getTranslationContent.md │ │ ├── next-intlayer │ │ │ ├── t.md │ │ │ ├── useDictionary.md │ │ │ ├── useIntlayer.md │ │ │ └── useLocale.md │ │ └── react-intlayer │ │ │ ├── t.md │ │ │ ├── useDictionary.md │ │ │ ├── useI18n.md │ │ │ ├── useIntlayer.md │ │ │ └── useLocale.md │ │ ├── per_locale_file.md │ │ ├── plugins │ │ └── sync-json.md │ │ ├── readme.md │ │ ├── releases │ │ ├── v6.md │ │ └── v7.md │ │ ├── roadmap.md │ │ ├── testing.md │ │ └── vs_code_extension.md ├── frequent_questions │ ├── ar │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── de │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── en-GB │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── en │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── es │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── fr │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── hi │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── id │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── it │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── ja │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── ko │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── pl │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── pt │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── ru │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── tr │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ ├── vi │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md │ └── zh │ │ ├── SSR_Next_no_[locale].md │ │ ├── array_as_content_declaration.md │ │ ├── build_dictionaries.md │ │ ├── build_error_CI_CD.md │ │ ├── bun_set_up.md │ │ ├── customized_locale_list.md │ │ ├── domain_routing.md │ │ ├── esbuild_error.md │ │ ├── get_locale_cookie.md │ │ ├── intlayer_command_undefined.md │ │ ├── locale_incorect_in_url.md │ │ ├── package_version_error.md │ │ ├── static_rendering.md │ │ ├── translated_path_url.md │ │ └── unknown_command.md ├── intlayer.config.ts ├── legal │ ├── ar │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── de │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── en-GB │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── en │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── es │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── fr │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── hi │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── id │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── it │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── ja │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── ko │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── pl │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── pt │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── ru │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── tr │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ ├── vi │ │ ├── privacy_notice.md │ │ └── terms_of_service.md │ └── zh │ │ ├── privacy_notice.md │ │ └── terms_of_service.md ├── package.json ├── src │ ├── blog.ts │ ├── common.ts │ ├── doc.ts │ ├── frequentQuestions.ts │ ├── generated │ │ ├── blog.entry.ts │ │ ├── docs.entry.ts │ │ ├── frequentQuestions.entry.ts │ │ └── legal.entry.ts │ ├── index.ts │ └── legal.ts ├── tools │ ├── fixSlugConsistency.ts │ ├── fixSlugs.ts │ ├── generateEntry.ts │ ├── markdownFormatting.test.ts │ ├── markdownFormatting.ts │ ├── metadataValidity.test.ts │ ├── metadataValidity.ts │ ├── outdatedDocs.test.ts │ ├── outdatedDocs.ts │ ├── prompts │ │ └── CUSTOM_INSTRUCTIONS.md │ ├── review.ts │ ├── slugConsistancy.test.ts │ ├── slugConsistancy.ts │ └── translate.ts ├── tsconfig.json ├── tsconfig.types.json ├── tsdown.config.ts └── vitest.config.ts ├── examples ├── angular-app │ ├── .editorconfig │ ├── .gitignore │ ├── angular.json │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.config.server.ts │ │ │ ├── app.config.ts │ │ │ ├── app.routes.server.ts │ │ │ └── app.routes.ts │ │ ├── index.html │ │ ├── main.server.ts │ │ ├── main.ts │ │ ├── server.ts │ │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── webpack.config.cjs ├── astro-react-app │ ├── .gitignore │ ├── astro.config.mjs │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── components │ │ │ ├── Button.astro │ │ │ └── MultilingualCard.tsx │ │ ├── layouts │ │ │ └── main.astro │ │ ├── pages │ │ │ ├── [locale] │ │ │ │ ├── index.astro │ │ │ │ └── markdown-page.md │ │ │ ├── index.astro │ │ │ └── markdown-page.md │ │ └── styles │ │ │ └── global.css │ └── tsconfig.json ├── express-app │ ├── .gitignore │ ├── intlayer.config.ts │ ├── package.json │ ├── src │ │ ├── index.content.ts │ │ └── index.ts │ ├── tsconfig.json │ └── tsconfig.types.json ├── json-sync │ ├── intlayer.config.ts │ ├── locales │ │ ├── en │ │ │ ├── about.json │ │ │ ├── common.json │ │ │ ├── home.json │ │ │ └── large-json.json │ │ ├── es │ │ │ ├── about.json │ │ │ ├── common.json │ │ │ └── home.json │ │ └── fr │ │ │ ├── about.json │ │ │ ├── common.json │ │ │ └── home.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── [locale] │ │ │ │ ├── (home) │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── about │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── layout.tsx │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── robots.ts │ │ │ └── sitemap.ts │ │ ├── components │ │ │ ├── ClientComponent.tsx │ │ │ ├── LocaleSwitcher.tsx │ │ │ └── ServerComponent.tsx │ │ ├── i18n.ts │ │ └── proxy.ts │ └── tsconfig.json ├── nest-app │ ├── .gitignore │ ├── .prettierrc │ ├── intlayer.config.ts │ ├── nest-cli.json │ ├── package.json │ ├── src │ │ ├── app.content.ts │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ └── main.ts │ ├── test │ │ ├── app.e2e-spec.ts │ │ └── jest-e2e.json │ ├── tsconfig.build.json │ └── tsconfig.json ├── next-15-next-intl-app │ ├── .gitignore │ ├── global.ts │ ├── intlayer.config.ts │ ├── messages │ │ ├── de.json │ │ └── en.json │ ├── next-env.d.ts │ ├── next.config.ts │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── components │ │ │ ├── LocaleSwitcher.tsx │ │ │ └── PageLayout.tsx │ │ └── pages │ │ │ ├── _app.tsx │ │ │ ├── en.i18n.json │ │ │ └── index.tsx │ └── tsconfig.json ├── nextjs-14-app │ ├── .gitignore │ ├── .intlayerrc │ ├── intlayer.config.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── src │ │ ├── app │ │ │ ├── [locale] │ │ │ │ ├── demo-usage-components │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── metadata.ts │ │ │ │ ├── page.content.ts │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ └── layout.tsx │ │ ├── components │ │ │ ├── ClientComponentExample │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ │ ├── DropDown │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── LangSwitcherDropDown │ │ │ │ ├── LangSwitcher.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── langSwitcher.content.ts │ │ │ ├── MaxHeightSmoother │ │ │ │ └── index.tsx │ │ │ ├── NestedServerComponentExample │ │ │ │ ├── ClientWrapper.tsx │ │ │ │ ├── NestedServerComponent.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── nestedServerComponent.content.ts │ │ │ └── ServerComponentExample │ │ │ │ ├── index.content.ts │ │ │ │ └── index.tsx │ │ └── middleware.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── nextjs-15-app │ ├── .eslintrc.json │ ├── .gitignore │ ├── intlayer.config.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── [locale] │ │ │ │ ├── layout.tsx │ │ │ │ ├── metadata.content.ts │ │ │ │ └── page.tsx │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ │ ├── GeistMonoVF.woff │ │ │ │ └── GeistVF.woff │ │ │ ├── globals.css │ │ │ └── layout.tsx │ │ ├── components │ │ │ ├── HomeContent.tsx │ │ │ ├── Link │ │ │ │ └── Link.tsx │ │ │ ├── LocaleSwitcher │ │ │ │ ├── LocaleSwitcher.tsx │ │ │ │ ├── localeSwitcher.content.ts │ │ │ │ └── useLocaleSearch.ts │ │ │ └── homeContent.content.ts │ │ ├── middleware.ts │ │ └── providers │ │ │ ├── IntlayerProvider.tsx │ │ │ └── MarkdownProvider.tsx │ ├── tailwind.config.ts │ └── tsconfig.json ├── nuxt-3-app │ ├── .gitignore │ ├── app.vue │ ├── components │ │ ├── Links.vue │ │ ├── LocaleSwitcher.vue │ │ ├── RouterLink.vue │ │ └── helloWorld │ │ │ ├── HelloWorld.vue │ │ │ └── helloWorld.content.ts │ ├── composables │ │ └── useI18nHTMLAttributes.ts │ ├── intlayer.config.ts │ ├── nuxt.config.ts │ ├── package.json │ ├── pages │ │ ├── home │ │ │ ├── index.content.ts │ │ │ ├── index.vue │ │ │ └── meta.content.ts │ │ ├── index.content.ts │ │ ├── index.vue │ │ └── meta.content.ts │ ├── public │ │ ├── favicon.ico │ │ ├── intlayer.svg │ │ ├── nuxt.svg │ │ └── robots.txt │ ├── server │ │ └── tsconfig.json │ └── tsconfig.json ├── nuxt-4-app │ ├── .gitignore │ ├── README.md │ ├── app.vue │ ├── components │ │ ├── Links.vue │ │ └── LocaleSwitcher.vue │ ├── composables │ │ └── useI18nHTMLAttributes.ts │ ├── content │ │ ├── about-page.content.ts │ │ └── home-page.content.ts │ ├── intlayer.config.ts │ ├── layouts │ │ └── default.vue │ ├── nuxt.config.ts │ ├── package.json │ ├── pages │ │ ├── about.vue │ │ └── index.vue │ ├── public │ │ ├── favicon.ico │ │ └── robots.txt │ └── tsconfig.json ├── react-app │ ├── .gitignore │ ├── craco.config.cjs │ ├── intlayer.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── Router.tsx │ │ ├── app.content.tsx │ │ ├── components │ │ │ ├── DropDown │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── LangSwitcherDropDown │ │ │ │ ├── LangSwitcher.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── langSwitcher.content.ts │ │ │ └── MaxHeightSmoother │ │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ └── tsconfig.json ├── react-router-app │ ├── .gitignore │ ├── app │ │ ├── app.css │ │ ├── components │ │ │ ├── locale-switcher.content.ts │ │ │ ├── locale-switcher.tsx │ │ │ ├── localized-link.tsx │ │ │ ├── navbar.content.ts │ │ │ └── navbar.tsx │ │ ├── hooks │ │ │ ├── useI18nHTMLAttributes.tsx │ │ │ └── useLocalizedNavigate.tsx │ │ ├── root.tsx │ │ ├── routes.ts │ │ └── routes │ │ │ ├── about │ │ │ ├── meta.content.ts │ │ │ ├── page.content.ts │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── meta.content.ts │ │ │ ├── page.content.ts │ │ │ └── page.tsx │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── react-router.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── react-router-fs-app │ ├── .gitignore │ ├── app │ │ ├── app.css │ │ ├── components │ │ │ ├── locale-switcher.content.ts │ │ │ ├── locale-switcher.tsx │ │ │ ├── localized-link.tsx │ │ │ ├── navbar.content.ts │ │ │ └── navbar.tsx │ │ ├── hooks │ │ │ ├── useI18nHTMLAttributes.tsx │ │ │ └── useLocalizedNavigate.tsx │ │ ├── root.tsx │ │ ├── routes.ts │ │ └── routes │ │ │ ├── ($locale)._index.content.ts │ │ │ ├── ($locale)._index.meta.content.ts │ │ │ ├── ($locale)._index.tsx │ │ │ ├── ($locale)._layout.tsx │ │ │ ├── ($locale).about.content.ts │ │ │ ├── ($locale).about.meta.content.ts │ │ │ └── ($locale).about.tsx │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── react-router.config.ts │ ├── tsconfig.json │ └── vite.config.ts ├── tanstack-start-app │ ├── .cta.json │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── intlayer.config.ts │ ├── package.json │ ├── prettier.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ ├── robots.txt │ │ ├── tanstack-circle-logo.png │ │ └── tanstack-word-logo-white.svg │ ├── src │ │ ├── components │ │ │ ├── Header.tsx │ │ │ ├── locale-switcher.content.ts │ │ │ ├── locale-switcher.tsx │ │ │ └── localized-link.tsx │ │ ├── content │ │ │ ├── 404.content.ts │ │ │ ├── about.content.ts │ │ │ └── index.content.tsx │ │ ├── data │ │ │ └── demo.punk-songs.ts │ │ ├── demo │ │ │ ├── api.names.ts │ │ │ ├── start.api-request.tsx │ │ │ ├── start.server-funcs.tsx │ │ │ ├── start.ssr.data-only.tsx │ │ │ ├── start.ssr.full-ssr.tsx │ │ │ ├── start.ssr.index.tsx │ │ │ └── start.ssr.spa-mode.tsx │ │ ├── hooks │ │ │ ├── useI18nHTMLAttributes.tsx │ │ │ └── useLocalizedNavigate.ts │ │ ├── logo.svg │ │ ├── routeTree.gen.ts │ │ ├── router.tsx │ │ ├── routes │ │ │ ├── __root.tsx │ │ │ └── {-$locale} │ │ │ │ ├── $.tsx │ │ │ │ ├── 404.tsx │ │ │ │ ├── about.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── route.tsx │ │ ├── styles.css │ │ └── utils │ │ │ └── getLocale.ts │ ├── tsconfig.json │ └── vite.config.ts ├── vite-preact-app │ ├── .gitignore │ ├── index.html │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── Router.tsx │ │ ├── app.content.tsx │ │ ├── app.css │ │ ├── app.tsx │ │ ├── assets │ │ │ └── preact.svg │ │ ├── components │ │ │ ├── LocaleSwitcher.content.ts │ │ │ ├── LocaleSwitcher.tsx │ │ │ └── LocalizedLink.tsx │ │ ├── hooks │ │ │ └── useI18nHTMLAttributes.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── vite-react-app │ ├── .gitignore │ ├── compiler │ │ └── comp-test.content.json │ ├── index.html │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── Router.tsx │ │ ├── Test.tsx │ │ ├── app.content.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── DropDown │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── LangSwitcherDropDown │ │ │ │ ├── LangSwitcher.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── langSwitcher.content.ts │ │ │ └── MaxHeightSmoother │ │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── main.tsx │ │ ├── test.content.ts │ │ ├── test.md │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── vite-solid-app │ ├── .gitignore │ ├── index.html │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── app.content.ts │ │ ├── assets │ │ │ └── solid.svg │ │ ├── index.css │ │ ├── index.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── vite-svelte-app │ ├── .gitignore │ ├── .vscode │ │ └── extensions.json │ ├── compiler │ │ ├── comp-test.content.json │ │ └── comp-test2.content.json │ ├── index.html │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.svelte │ │ ├── Test.svelte │ │ ├── Test2.svelte │ │ ├── app.content.ts │ │ ├── app.css │ │ ├── assets │ │ │ └── svelte.svg │ │ ├── lib │ │ │ ├── Counter.svelte │ │ │ └── LocaleSwitcher.svelte │ │ ├── main.ts │ │ ├── test.content.ts │ │ └── vite-env.d.ts │ ├── svelte.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── vite-vue-app │ ├── .gitignore │ ├── .vscode │ └── extensions.json │ ├── compiler │ ├── comp-test.content.json │ └── comp-test2.content.json │ ├── index.html │ ├── intlayer.config.ts │ ├── package.json │ ├── public │ └── vite.svg │ ├── shims-vue.d.ts │ ├── src │ ├── App.vue │ ├── assets │ │ └── vue.svg │ ├── components │ │ ├── Links.vue │ │ ├── LocaleSwitcher.vue │ │ ├── RouterLink.vue │ │ ├── example.content.ts │ │ ├── example2.content.ts │ │ ├── helloWorld │ │ │ ├── HelloWorld.vue │ │ │ └── helloWorld.content.ts │ │ └── test │ │ │ ├── Test.vue │ │ │ └── Test2.vue │ ├── composables │ │ └── useI18nHTMLAttributes.ts │ ├── main.ts │ ├── routes.ts │ ├── style.css │ └── views │ │ ├── home │ │ ├── HomeView.vue │ │ └── home.content.ts │ │ ├── root │ │ ├── Root.vue │ │ └── root.content.ts │ │ └── test │ │ ├── TestView.vue │ │ ├── contentLevel1.content.ts │ │ ├── contentLevel2.content.ts │ │ └── contentLevel3.content.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── intlayer.config.ts ├── package.json ├── packages ├── @intlayer │ ├── ai │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── aiSdk.ts │ │ │ ├── auditDictionaryMetadata │ │ │ │ ├── PROMPT.md │ │ │ │ └── index.ts │ │ │ ├── customQuery.ts │ │ │ ├── index.ts │ │ │ ├── translateJSON │ │ │ │ ├── PROMPT.md │ │ │ │ └── index.ts │ │ │ └── utils │ │ │ │ └── extractJSON.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── types │ │ │ └── tsdown.d.ts │ ├── api │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── distantDictionary │ │ │ │ ├── fetchDistantDictionaries.ts │ │ │ │ ├── fetchDistantDictionary.ts │ │ │ │ └── index.ts │ │ │ ├── fetcher.ts │ │ │ ├── getIntlayerAPI │ │ │ │ ├── ai.ts │ │ │ │ ├── audit.ts │ │ │ │ ├── dictionary.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── newsletter.ts │ │ │ │ ├── oAuth.ts │ │ │ │ ├── organization.ts │ │ │ │ ├── project.ts │ │ │ │ ├── search.ts │ │ │ │ ├── stripe.ts │ │ │ │ ├── tag.ts │ │ │ │ └── user.ts │ │ │ ├── index.ts │ │ │ ├── proxy.ts │ │ │ └── types.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── types │ │ │ └── tsdown.d.ts │ ├── babel │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── babel-plugin-intlayer-extract.ts │ │ │ ├── babel-plugin-intlayer-optimize.ts │ │ │ ├── getExtractPluginOptions.ts │ │ │ ├── getOptimizePluginOptions.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── types │ │ │ └── tsdown.d.ts │ ├── chokidar │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── buildIntlayerDictionary │ │ │ │ ├── buildIntlayerDictionary.ts │ │ │ │ ├── index.ts │ │ │ │ ├── processContentDeclaration.ts │ │ │ │ ├── writeDynamicDictionary.ts │ │ │ │ ├── writeFetchDictionary.ts │ │ │ │ ├── writeMergedDictionary.ts │ │ │ │ ├── writeRemoteDictionary.ts │ │ │ │ └── writeUnmergedDictionary.ts │ │ │ ├── cleanOutputDir.ts │ │ │ ├── createDictionaryEntryPoint │ │ │ │ ├── createDictionaryEntryPoint.ts │ │ │ │ ├── generateDictionaryListContent.ts │ │ │ │ ├── getBuiltDictionariesPath.ts │ │ │ │ ├── getBuiltDynamicDictionariesPath.ts │ │ │ │ ├── getBuiltFetchDictionariesPath.ts │ │ │ │ ├── getBuiltRemoteDictionariesPath.ts │ │ │ │ ├── getBuiltUnmergedDictionariesPath.ts │ │ │ │ └── index.ts │ │ │ ├── createType │ │ │ │ ├── createModuleAugmentation.ts │ │ │ │ ├── createType.ts │ │ │ │ └── index.ts │ │ │ ├── fetchDistantDictionaries.ts │ │ │ ├── filterInvalidDictionaries.ts │ │ │ ├── getContentDeclarationFileTemplate │ │ │ │ ├── cjsTemplate.txt │ │ │ │ ├── esmTemplate.txt │ │ │ │ ├── getContentDeclarationFileTemplate.ts │ │ │ │ ├── jsonTemplate.txt │ │ │ │ └── tsTemplate.txt │ │ │ ├── handleAdditionalContentDeclarationFile.ts │ │ │ ├── handleContentDeclarationFileChange.ts │ │ │ ├── handleUnlinkedContentDeclarationFile.ts │ │ │ ├── index.ts │ │ │ ├── listDictionariesPath.ts │ │ │ ├── listGitFiles.ts │ │ │ ├── loadDictionaries │ │ │ │ ├── getIntlayerBundle.ts │ │ │ │ ├── index.ts │ │ │ │ ├── loadContentDeclaration.ts │ │ │ │ ├── loadDictionaries.ts │ │ │ │ ├── loadLocalDictionaries.ts │ │ │ │ ├── loadRemoteDictionaries.ts │ │ │ │ └── log.ts │ │ │ ├── prepareIntlayer.ts │ │ │ ├── reduceDictionaryContent │ │ │ │ ├── applyMask.test.ts │ │ │ │ ├── applyMask.ts │ │ │ │ └── reduceDictionaryContent.ts │ │ │ ├── transformFiles │ │ │ │ ├── extractDictionaryKey.ts │ │ │ │ ├── extractIntlayer.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── transformFiles.ts │ │ │ ├── utils │ │ │ │ ├── buildFilesList.ts │ │ │ │ ├── chunkJSON.test.ts │ │ │ │ ├── chunkJSON.ts │ │ │ │ ├── formatter.ts │ │ │ │ ├── getChunk.test.ts │ │ │ │ ├── getChunk.ts │ │ │ │ ├── getComponentTransformPattern.ts │ │ │ │ ├── getFileHash.ts │ │ │ │ ├── getFormatFromExtension.ts │ │ │ │ ├── pLimit.ts │ │ │ │ ├── parallelize.ts │ │ │ │ ├── parallelizeGlobal.ts │ │ │ │ ├── reduceObjectFormat.test.ts │ │ │ │ ├── reduceObjectFormat.ts │ │ │ │ ├── resolveObjectPromises.test.ts │ │ │ │ ├── resolveObjectPromises.ts │ │ │ │ ├── runOnce.ts │ │ │ │ ├── runParallel │ │ │ │ │ ├── bin.ts │ │ │ │ │ ├── bootstrap.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── pidTree.ts │ │ │ │ │ ├── ps.ts │ │ │ │ │ ├── runTask.ts │ │ │ │ │ ├── spawnPosix.ts │ │ │ │ │ ├── spawnWin32.ts │ │ │ │ │ └── wmic.ts │ │ │ │ ├── sortAlphabetically.ts │ │ │ │ ├── splitTextByLine.test.ts │ │ │ │ ├── splitTextByLine.ts │ │ │ │ ├── verifyIdenticObjectFormat.test.ts │ │ │ │ └── verifyIdenticObjectFormat.ts │ │ │ ├── watcher.ts │ │ │ ├── writeConfiguration │ │ │ │ └── index.ts │ │ │ ├── writeContentDeclaration │ │ │ │ ├── _test.content.ts │ │ │ │ ├── detectExportedComponentName.ts │ │ │ │ ├── detectFormatCommand.ts │ │ │ │ ├── dictionaryStatus.ts │ │ │ │ ├── index.ts │ │ │ │ ├── processContentDeclarationContent.ts │ │ │ │ ├── transformJSFile.test.ts │ │ │ │ ├── transformJSFile.ts │ │ │ │ ├── writeContentDeclaration.ts │ │ │ │ └── writeJSFile.ts │ │ │ ├── writeFileIfChanged.ts │ │ │ └── writeJsonIfChanged.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ ├── types │ │ │ └── tsdown.d.ts │ │ └── vitest.config.ts │ ├── cli │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── IntlayerEventListener.ts │ │ │ ├── build.ts │ │ │ ├── cli.test.ts │ │ │ ├── cli.ts │ │ │ ├── config.ts │ │ │ ├── editor.ts │ │ │ ├── fill │ │ │ │ ├── deepMergeContent.test.ts │ │ │ │ ├── deepMergeContent.ts │ │ │ │ ├── fill.ts │ │ │ │ ├── formatAutoFilledFilePath.ts │ │ │ │ ├── formatFillData.ts │ │ │ │ ├── getAvailableLocalesInDictionary.test.ts │ │ │ │ ├── getAvailableLocalesInDictionary.ts │ │ │ │ ├── getFilterMissingContentPerLocale.test.ts │ │ │ │ ├── getFilterMissingContentPerLocale.ts │ │ │ │ ├── index.ts │ │ │ │ ├── listTranslationsTasks.ts │ │ │ │ ├── mergeChunks.ts │ │ │ │ ├── translateDictionary.ts │ │ │ │ └── writeFill.ts │ │ │ ├── getTargetDictionary.ts │ │ │ ├── index.ts │ │ │ ├── listContentDeclaration.ts │ │ │ ├── liveSync.ts │ │ │ ├── prompts │ │ │ │ ├── REVIEW_PROMPT.md │ │ │ │ └── TRANSLATE_PROMPT.md │ │ │ ├── pull.ts │ │ │ ├── push │ │ │ │ ├── pullLog.ts │ │ │ │ └── push.ts │ │ │ ├── pushConfig.ts │ │ │ ├── pushLog.ts │ │ │ ├── reviewDoc.ts │ │ │ ├── reviewDocBlockAware.ts │ │ │ ├── test │ │ │ │ ├── index.ts │ │ │ │ ├── listMissingTranslations.ts │ │ │ │ └── test.ts │ │ │ ├── transform.ts │ │ │ ├── translateDoc.ts │ │ │ ├── translation-alignment │ │ │ │ ├── alignBlocks.ts │ │ │ │ ├── computeSimilarity.ts │ │ │ │ ├── fingerprintBlock.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mapChangedLinesToBlocks.ts │ │ │ │ ├── normalizeBlock.ts │ │ │ │ ├── pipeline.ts │ │ │ │ ├── planActions.ts │ │ │ │ ├── rebuildDocument.ts │ │ │ │ ├── segmentDocument.ts │ │ │ │ └── types.ts │ │ │ ├── utils │ │ │ │ ├── _calculateChunkTest.md │ │ │ │ ├── calculateChunks.ts │ │ │ │ ├── checkAccess.ts │ │ │ │ ├── checkFileModifiedRange.test.ts │ │ │ │ ├── checkFileModifiedRange.ts │ │ │ │ ├── checkLastUpdateTime.ts │ │ │ │ ├── chunkInference.ts │ │ │ │ ├── fixChunkStartEndChars.test.ts │ │ │ │ ├── fixChunkStartEndChars.ts │ │ │ │ ├── formatTimeDiff.test.ts │ │ │ │ ├── formatTimeDiff.ts │ │ │ │ ├── getIsFileUpdatedRecently.ts │ │ │ │ ├── getOutputFilePath.test.ts │ │ │ │ ├── getOutputFilePath.ts │ │ │ │ ├── getParentPackageJSON.ts │ │ │ │ ├── listSpecialChars.test.ts │ │ │ │ ├── listSpecialChars.ts │ │ │ │ ├── mapChunksBetweenFiles.ts │ │ │ │ ├── reorderParagraphs.test.ts │ │ │ │ ├── reorderParagraphs.ts │ │ │ │ └── setupAI.ts │ │ │ └── watch.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ ├── types │ │ │ └── tsdown.d.ts │ │ └── vitest.config.ts │ ├── config │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── alias.ts │ │ │ ├── built.ts │ │ │ ├── bundleJSFile.ts │ │ │ ├── client.ts │ │ │ ├── configFile │ │ │ │ ├── buildConfigurationFields.ts │ │ │ │ ├── getConfiguration.ts │ │ │ │ ├── index.ts │ │ │ │ ├── loadConfigurationFile.ts │ │ │ │ └── searchConfigurationFile.ts │ │ │ ├── defaultValues │ │ │ │ ├── build.ts │ │ │ │ ├── compiler.ts │ │ │ │ ├── content.ts │ │ │ │ ├── dictionary.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── internationalization.ts │ │ │ │ ├── log.ts │ │ │ │ └── routing.ts │ │ │ ├── index.ts │ │ │ ├── loadEnvFile.ts │ │ │ ├── loadExternalFile │ │ │ │ ├── bundleFile.ts │ │ │ │ ├── loadExternalFile.ts │ │ │ │ ├── parseFileContent.ts │ │ │ │ └── transpileTSToMJS.ts │ │ │ ├── logger.ts │ │ │ ├── retryManager.test.ts │ │ │ ├── retryManager.ts │ │ │ └── utils │ │ │ │ ├── ESMxCJSHelpers.ts │ │ │ │ ├── cacheDisk.ts │ │ │ │ ├── cacheMemory.ts │ │ │ │ ├── clearModuleCache.ts │ │ │ │ ├── compareVersions.ts │ │ │ │ ├── extractErrorMessage.test.ts │ │ │ │ ├── extractErrorMessage.ts │ │ │ │ ├── getExtension.ts │ │ │ │ ├── getPackageJsonPath.ts │ │ │ │ ├── logStack.ts │ │ │ │ ├── normalizePath.ts │ │ │ │ └── stringFormatter │ │ │ │ ├── camelCaseToKebabCase.ts │ │ │ │ ├── camelCaseToSentence.ts │ │ │ │ ├── index.ts │ │ │ │ ├── kebabCaseToCamelCase.test.ts │ │ │ │ ├── kebabCaseToCamelCase.ts │ │ │ │ └── toLowerCamelCase.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ ├── types │ │ │ └── tsdown.d.ts │ │ └── vitest.config.ts │ ├── core │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── deepTransformPlugins │ │ │ │ ├── getFilterMissingTranslationsContent.test.ts │ │ │ │ ├── getFilterMissingTranslationsContent.ts │ │ │ │ ├── getFilterTranslationsOnlyContent.test.ts │ │ │ │ ├── getFilterTranslationsOnlyContent.ts │ │ │ │ ├── getFilteredLocalesContent.test.ts │ │ │ │ ├── getFilteredLocalesContent.ts │ │ │ │ ├── getLocalizedContent.test.ts │ │ │ │ ├── getLocalizedContent.ts │ │ │ │ ├── getMaskContent.test.ts │ │ │ │ ├── getMaskContent.ts │ │ │ │ ├── getMissingLocalesContent.test.ts │ │ │ │ ├── getMissingLocalesContent.ts │ │ │ │ ├── getMultilingualDictionary.test.ts │ │ │ │ ├── getMultilingualDictionary.ts │ │ │ │ ├── getReplacedValuesContent.test.ts │ │ │ │ ├── getReplacedValuesContent.ts │ │ │ │ ├── getSplittedContent.test.ts │ │ │ │ ├── getSplittedContent.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insertContentInDictionary.test.ts │ │ │ │ └── insertContentInDictionary.ts │ │ │ ├── dictionaryManipulator │ │ │ │ ├── editDictionaryByKeyPath.ts │ │ │ │ ├── getContentNodeByKeyPath.test.ts │ │ │ │ ├── getContentNodeByKeyPath.ts │ │ │ │ ├── getDefaultNode.ts │ │ │ │ ├── getEmptyNode.ts │ │ │ │ ├── getNodeChildren.ts │ │ │ │ ├── getNodeType.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mergeDictionaries.test.ts │ │ │ │ ├── mergeDictionaries.ts │ │ │ │ ├── normalizeDictionary.ts │ │ │ │ ├── orderDictionaries.test.ts │ │ │ │ ├── orderDictionaries.ts │ │ │ │ ├── removeContentNodeByKeyPath.ts │ │ │ │ ├── renameContentNodeByKeyPath.ts │ │ │ │ └── updateNodeChildren.ts │ │ │ ├── formatters │ │ │ │ ├── compact.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── date.ts │ │ │ │ ├── index.ts │ │ │ │ ├── list.ts │ │ │ │ ├── number.ts │ │ │ │ ├── percentage.ts │ │ │ │ ├── relativeTime.ts │ │ │ │ └── units.ts │ │ │ ├── getStorageAttributes.test.ts │ │ │ ├── getStorageAttributes.ts │ │ │ ├── index.ts │ │ │ ├── interpreter │ │ │ │ ├── getCondition.ts │ │ │ │ ├── getContent │ │ │ │ │ ├── deepTransform.ts │ │ │ │ │ ├── getContent.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── plugins.ts │ │ │ │ ├── getDictionary.ts │ │ │ │ ├── getEnumeration.ts │ │ │ │ ├── getGender.ts │ │ │ │ ├── getInsertion.ts │ │ │ │ ├── getIntlayer.ts │ │ │ │ ├── getNesting.ts │ │ │ │ ├── getTranslation.ts │ │ │ │ └── index.ts │ │ │ ├── localization │ │ │ │ ├── getBrowserLocale.tsx │ │ │ │ ├── getHTMLTextDir.ts │ │ │ │ ├── getLocale.ts │ │ │ │ ├── getLocaleFromPath.ts │ │ │ │ ├── getLocaleLang.ts │ │ │ │ ├── getLocaleName.ts │ │ │ │ ├── getLocalizedUrl.test.ts │ │ │ │ ├── getLocalizedUrl.ts │ │ │ │ ├── getMultilingualUrls.test.ts │ │ │ │ ├── getMultilingualUrls.ts │ │ │ │ ├── getPathWithoutLocale.ts │ │ │ │ ├── getPrefix.test.ts │ │ │ │ ├── getPrefix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── localeDetector.ts │ │ │ │ ├── localeMapper.ts │ │ │ │ ├── localeResolver.ts │ │ │ │ └── validatePrefix.ts │ │ │ ├── transpiler │ │ │ │ ├── condition │ │ │ │ │ ├── condition.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── enumeration │ │ │ │ │ ├── enumeration.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── file │ │ │ │ │ ├── file.ts │ │ │ │ │ ├── fileBrowser.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── gender │ │ │ │ │ ├── gender.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insertion │ │ │ │ │ ├── getInsertionValues.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── insertion.ts │ │ │ │ ├── markdown │ │ │ │ │ ├── getMarkdownMetadata.test.ts │ │ │ │ │ ├── getMarkdownMetadata.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── markdown.ts │ │ │ │ ├── nesting │ │ │ │ │ ├── index.ts │ │ │ │ │ └── nesting.ts │ │ │ │ └── translation │ │ │ │ │ ├── index.ts │ │ │ │ │ └── translation.ts │ │ │ └── utils │ │ │ │ ├── _yaml.yaml │ │ │ │ ├── checkIsURLAbsolute.ts │ │ │ │ ├── getCookie.ts │ │ │ │ ├── intl.ts │ │ │ │ ├── isSameKeyPath.ts │ │ │ │ ├── isValidReactElement.ts │ │ │ │ ├── localeStorage.ts │ │ │ │ ├── parseYaml.test.ts │ │ │ │ └── parseYaml.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ ├── types │ │ │ └── tsdown.d.ts │ │ └── vitest.config.ts │ ├── design-system │ │ ├── .gitignore │ │ ├── .storybook │ │ │ ├── favicon.ico │ │ │ ├── favicon.svg │ │ │ ├── main.ts │ │ │ ├── manager-head.html │ │ │ ├── manager.ts │ │ │ ├── preview-head.html │ │ │ ├── preview.tsx │ │ │ ├── static │ │ │ │ └── logo_with_text.svg │ │ │ └── theme.ts │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── intlayer.config.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── Accordion │ │ │ │ │ ├── Accordion.tsx │ │ │ │ │ ├── accordion.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Avatar │ │ │ │ │ ├── avatar.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Badge │ │ │ │ │ ├── badge.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Breadcrumb │ │ │ │ │ ├── breadcrumb.content.ts │ │ │ │ │ ├── breadcrumb.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Browser │ │ │ │ │ ├── Browser.content.ts │ │ │ │ │ ├── Browser.tsx │ │ │ │ │ ├── browser.stories.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Button │ │ │ │ │ ├── Button.tsx │ │ │ │ │ ├── button.stories.tsx │ │ │ │ │ ├── button.test.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ClickOutsideDiv │ │ │ │ │ ├── ClickOutsideDiv.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── CollapsibleTable │ │ │ │ │ ├── CollapsibleTable.tsx │ │ │ │ │ ├── collapsibleTable.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Command │ │ │ │ │ ├── command.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Container │ │ │ │ │ ├── container.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContentEditor │ │ │ │ │ ├── ContentEditor.tsx │ │ │ │ │ ├── ContentEditorInput.tsx │ │ │ │ │ ├── ContentEditorTextArea.tsx │ │ │ │ │ ├── contentEditor.stories.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ContentSelector │ │ │ │ │ ├── ContentSelector.tsx │ │ │ │ │ ├── contentSelector.stories.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CopyButton │ │ │ │ │ ├── CopyButton.content.ts │ │ │ │ │ ├── copybutton.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── CopyToClipboard │ │ │ │ │ ├── copytoclipboard.stories.tsx │ │ │ │ │ ├── index.test.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── DictionaryEditor │ │ │ │ │ ├── DictionaryEditor.tsx │ │ │ │ │ ├── ItemLayout.tsx │ │ │ │ │ ├── NodeWrapper │ │ │ │ │ │ ├── ArrayWrapper.tsx │ │ │ │ │ │ ├── ConditionWrapper.tsx │ │ │ │ │ │ ├── EnumerationWrapper.tsx │ │ │ │ │ │ ├── FileWrapper.tsx │ │ │ │ │ │ ├── InsertionWrapper.tsx │ │ │ │ │ │ ├── MarkdownWrapper.tsx │ │ │ │ │ │ ├── NestedObjectWrapper.tsx │ │ │ │ │ │ ├── StringWrapper.tsx │ │ │ │ │ │ ├── TranslationWrapper.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── DictionaryFieldEditor │ │ │ │ │ ├── ContentEditor.tsx │ │ │ │ │ ├── ContentEditorView │ │ │ │ │ │ └── TextEditor.tsx │ │ │ │ │ ├── DictionaryCreationForm │ │ │ │ │ │ ├── DictionaryCreationForm.tsx │ │ │ │ │ │ ├── dictionaryCreationForm.content.ts │ │ │ │ │ │ ├── useDictionaryFormSchema.content.ts │ │ │ │ │ │ └── useDictionaryFormSchema.ts │ │ │ │ │ ├── DictionaryDetails │ │ │ │ │ │ ├── DictionaryDetailsForm.tsx │ │ │ │ │ │ ├── dictionaryDetails.content.tsx │ │ │ │ │ │ ├── useDictionaryDetailsSchema.content.ts │ │ │ │ │ │ └── useDictionaryDetailsSchema.ts │ │ │ │ │ ├── DictionaryFieldEditor.tsx │ │ │ │ │ ├── EnumKeyInput.tsx │ │ │ │ │ ├── JSONEditor.tsx │ │ │ │ │ ├── KeyPathBreadcrumb.tsx │ │ │ │ │ ├── NavigationView │ │ │ │ │ │ ├── NavigationViewNode.tsx │ │ │ │ │ │ └── navigationViewNode.content.ts │ │ │ │ │ ├── NodeTypeSelector.tsx │ │ │ │ │ ├── SaveForm │ │ │ │ │ │ ├── SaveForm.tsx │ │ │ │ │ │ └── saveForm.content.tsx │ │ │ │ │ ├── StructureEditor.tsx │ │ │ │ │ ├── StructureView │ │ │ │ │ │ ├── StructureView.tsx │ │ │ │ │ │ └── structureView.content.ts │ │ │ │ │ ├── VersionSwitcherDropDown │ │ │ │ │ │ ├── VersionSwitcher.tsx │ │ │ │ │ │ ├── VersionSwitcherContext.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── versionSwitcherDropDown.content.ts │ │ │ │ │ ├── dictionaryFieldEditor.content.ts │ │ │ │ │ ├── getIsEditableSection.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── nodeTypeSelector.content.ts │ │ │ │ ├── DropDown │ │ │ │ │ ├── dropdown.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditableField │ │ │ │ │ ├── EditableFieldInput.tsx │ │ │ │ │ ├── EditableFieldLayout.tsx │ │ │ │ │ ├── EditableFieldTextArea.tsx │ │ │ │ │ ├── editableFieldInput.stories.tsx │ │ │ │ │ ├── editableFieldTextArea.stories.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ExpandCollapse │ │ │ │ │ ├── ExpandCollapse.stories.tsx │ │ │ │ │ ├── ExpandCollapse.tsx │ │ │ │ │ ├── expandCollapse.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── Flags │ │ │ │ │ ├── Flag.tsx │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── arab.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cefta.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cp.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dg.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── eac.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es-ga.svg │ │ │ │ │ ├── es-pv.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── ic.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pc.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh-ac.svg │ │ │ │ │ ├── sh-hl.svg │ │ │ │ │ ├── sh-ta.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── xk.svg │ │ │ │ │ ├── xx.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ │ ├── Footer │ │ │ │ │ ├── footer.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Form │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── FormBase.tsx │ │ │ │ │ ├── FormControl.tsx │ │ │ │ │ ├── FormDescription.tsx │ │ │ │ │ ├── FormField.tsx │ │ │ │ │ ├── FormItem.tsx │ │ │ │ │ ├── FormLabel.tsx │ │ │ │ │ ├── FormMessage.tsx │ │ │ │ │ ├── elements │ │ │ │ │ │ ├── AutoSizeTextAreaElement.tsx │ │ │ │ │ │ ├── CheckboxElement.tsx │ │ │ │ │ │ ├── EditableFieldInputElement.tsx │ │ │ │ │ │ ├── EditableFieldTextAreaElement.tsx │ │ │ │ │ │ ├── FormElement.tsx │ │ │ │ │ │ ├── FormElementWrapper.tsx │ │ │ │ │ │ ├── InputElement.tsx │ │ │ │ │ │ ├── InputPasswordElement.tsx │ │ │ │ │ │ ├── MultiselectElement.tsx │ │ │ │ │ │ ├── OTPElement.tsx │ │ │ │ │ │ ├── SearchInputElement.tsx │ │ │ │ │ │ ├── SelectElement.tsx │ │ │ │ │ │ ├── SwitchSelectorElement.tsx │ │ │ │ │ │ ├── TextAreaElement.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── form.stories.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── layout │ │ │ │ │ │ ├── FormItemLayout.tsx │ │ │ │ │ │ ├── FormLabelLayout.tsx │ │ │ │ │ │ ├── RequiredStar.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── Headers │ │ │ │ │ ├── headers.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── HeightResizer │ │ │ │ │ ├── heightresizer.stories.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── HideShow │ │ │ │ │ └── index.tsx │ │ │ │ ├── IDE │ │ │ │ │ ├── Code.tsx │ │ │ │ │ ├── CodeBlockClient.tsx │ │ │ │ │ ├── CodeBlockServer.tsx │ │ │ │ │ ├── CodeBlockShiki.tsx │ │ │ │ │ ├── CodeConditionalRenderer.tsx │ │ │ │ │ ├── CodeContext.tsx │ │ │ │ │ ├── CodeFormatSelector.tsx │ │ │ │ │ ├── ContentDeclarationFormatSelector.tsx │ │ │ │ │ ├── CopyCode.tsx │ │ │ │ │ ├── FileList.tsx │ │ │ │ │ ├── FileTree.tsx │ │ │ │ │ ├── IDE.tsx │ │ │ │ │ ├── MarkDownRender.tsx │ │ │ │ │ ├── MonacoCode.tsx │ │ │ │ │ ├── PackageManagerSelector.tsx │ │ │ │ │ ├── code.content.ts │ │ │ │ │ ├── copyCode.content.ts │ │ │ │ │ ├── createFileTree.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── InformationTag │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── informationTag.stories.tsx │ │ │ │ ├── Input │ │ │ │ │ ├── Checkbox.tsx │ │ │ │ │ ├── Input.tsx │ │ │ │ │ ├── InputPassword.tsx │ │ │ │ │ ├── OTPInput.tsx │ │ │ │ │ ├── SearchInput.tsx │ │ │ │ │ ├── checkbox.stories.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── input.stories.tsx │ │ │ │ │ ├── inputPassword.stories.tsx │ │ │ │ │ ├── otpInput.stories.tsx │ │ │ │ │ └── searchInput.stories.tsx │ │ │ │ ├── KeyboardScreenAdapter │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── keyboardScreenAdapter.stories.tsx │ │ │ │ ├── Label │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── label.stories.tsx │ │ │ │ ├── Link │ │ │ │ │ ├── Link.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── link.stories.tsx │ │ │ │ │ └── link.test.tsx │ │ │ │ ├── Loader │ │ │ │ │ ├── index.content.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── loader.stories.tsx │ │ │ │ │ └── spinner.tsx │ │ │ │ ├── LocaleSwitcherContentDropDown │ │ │ │ │ ├── LocaleSwitcherContent.tsx │ │ │ │ │ ├── LocaleSwitcherContentContext.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── localeSwitcher.content.ts │ │ │ │ ├── LocaleSwitcherDropDown │ │ │ │ │ ├── LocaleSwitcher.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── localeSwitcher.content.ts │ │ │ │ ├── Logo │ │ │ │ │ ├── Logo.fig │ │ │ │ │ ├── Logo.tsx │ │ │ │ │ ├── LogoTextOnly.tsx │ │ │ │ │ ├── LogoWithText.tsx │ │ │ │ │ ├── LogoWithTextBelow.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── logo.svg │ │ │ │ │ ├── logo_text_only.svg │ │ │ │ │ ├── logo_with_text.svg │ │ │ │ │ └── logo_with_text_below.svg │ │ │ │ ├── MarkDownRender │ │ │ │ │ ├── MarkDownRender.tsx │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── processor.test.tsx.snap │ │ │ │ │ ├── _fixture.md │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── processor.test.tsx │ │ │ │ │ └── processor.tsx │ │ │ │ ├── MaxHeightSmoother │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── maxheightsmoother.stories.tsx │ │ │ │ ├── MaxWidthSmoother │ │ │ │ │ └── index.tsx │ │ │ │ ├── Modal │ │ │ │ │ ├── Modal.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── modal.stories.tsx │ │ │ │ ├── Navbar │ │ │ │ │ ├── Burger.tsx │ │ │ │ │ ├── DesktopNavbar.tsx │ │ │ │ │ ├── MobileNavbar.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── navbar.stories.tsx │ │ │ │ │ └── useNavigation.ts │ │ │ │ ├── Pagination │ │ │ │ │ ├── NumberItemsSelector.tsx │ │ │ │ │ ├── Pagination.tsx │ │ │ │ │ ├── ShowingResultsNumberItems.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── pagination.content.ts │ │ │ │ │ └── pagination.stories.tsx │ │ │ │ ├── Pattern │ │ │ │ │ ├── DotPattern.tsx │ │ │ │ │ ├── GridPattern.tsx │ │ │ │ │ ├── SpotLight.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pattern.stories.tsx │ │ │ │ ├── Popover │ │ │ │ │ ├── dynamic.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── popover.stories.tsx │ │ │ │ │ └── static.tsx │ │ │ │ ├── PressableSpan │ │ │ │ │ ├── PressableSpan.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pressableSpan.stories.tsx │ │ │ │ ├── RightDrawer │ │ │ │ │ ├── RightDrawer.stories.tsx │ │ │ │ │ ├── RightDrawer.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── isElementAtTopAndNotCovered.tsx │ │ │ │ │ └── useRightDrawerStore.ts │ │ │ │ ├── Select │ │ │ │ │ ├── Multiselect.tsx │ │ │ │ │ ├── Select.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── multiselect.stories.tsx │ │ │ │ │ └── select.stories.tsx │ │ │ │ ├── SocialNetworks │ │ │ │ │ ├── DiscordLogo.tsx │ │ │ │ │ ├── FacebookLogo.tsx │ │ │ │ │ ├── InstagramLogo.tsx │ │ │ │ │ ├── LinkedInLogo.tsx │ │ │ │ │ ├── ProductHuntLogo.tsx │ │ │ │ │ ├── TiktokLogo.tsx │ │ │ │ │ ├── XLogo.tsx │ │ │ │ │ ├── YoutubeLogo.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── SwitchSelector │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── switchSelector.stories.tsx │ │ │ │ ├── Tab │ │ │ │ │ ├── Tab.tsx │ │ │ │ │ ├── TabContext.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── tab.stories.tsx │ │ │ │ ├── TabSelector │ │ │ │ │ ├── TabSelector.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tabSelector.stories.tsx │ │ │ │ ├── Table │ │ │ │ │ ├── Table.stories.tsx │ │ │ │ │ ├── Table.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── table.content.ts │ │ │ │ ├── Tag │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── tag.stories.tsx │ │ │ │ ├── Terminal │ │ │ │ │ ├── Terminal.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── terminal.stories.tsx │ │ │ │ ├── TextArea │ │ │ │ │ ├── AutoSizeTextArea.tsx │ │ │ │ │ ├── AutocompleteTextArea.tsx │ │ │ │ │ ├── TextArea.tsx │ │ │ │ │ ├── autocompleteTextarea.stories.tsx │ │ │ │ │ ├── autosizedTextarea.stories.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── textarea.stories.tsx │ │ │ │ ├── ThemeSwitcherDropDown │ │ │ │ │ ├── DesktopThemeSwitcher.tsx │ │ │ │ │ ├── MobileThemeSwitcher.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── types.ts │ │ │ │ ├── Toaster │ │ │ │ │ ├── Toast.tsx │ │ │ │ │ ├── Toaster.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── toaster.stories.tsx │ │ │ │ │ └── useToast.tsx │ │ │ │ ├── WithResizer │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── withresizer.stories.tsx │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── reactQuery.ts │ │ │ │ ├── useAuth │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useAuth.ts │ │ │ │ │ ├── useOAuth2.ts │ │ │ │ │ └── useSession.ts │ │ │ │ ├── useDevice.ts │ │ │ │ ├── useGetElementById.ts │ │ │ │ ├── useGetElementOrWindow.ts │ │ │ │ ├── useHorizontalSwipe.ts │ │ │ │ ├── useIntlayerAPI.ts │ │ │ │ ├── useIsDarkMode.ts │ │ │ │ ├── useIsMounted.ts │ │ │ │ ├── useItemSelector.ts │ │ │ │ ├── useKeyboardDetector.ts │ │ │ │ ├── usePersistedStore.ts │ │ │ │ ├── useScreenWidth.ts │ │ │ │ ├── useScrollBlockage │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useScrollBlockageStore.ts │ │ │ │ ├── useScrollDetection.ts │ │ │ │ ├── useScrollY.ts │ │ │ │ ├── useSearch.ts │ │ │ │ └── useUser │ │ │ │ │ └── index.ts │ │ │ ├── libs │ │ │ │ ├── auth.ts │ │ │ │ └── index.ts │ │ │ ├── providers │ │ │ │ ├── ReactQueryProvider.tsx │ │ │ │ └── index.ts │ │ │ ├── tailwind.config.ts │ │ │ └── utils │ │ │ │ ├── cn.ts │ │ │ │ ├── image.ts │ │ │ │ └── object.ts │ │ ├── tailwind.css │ │ ├── test │ │ │ └── setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ ├── tw-source.css │ │ ├── types │ │ │ └── svg.d.ts │ │ └── vitest.config.ts │ ├── dictionaries-entry │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── dynamic-dictionaries-entry │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── editor-react │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── CommunicatorContext.tsx │ │ │ ├── ConfigurationContext.tsx │ │ │ ├── DictionariesRecordContext.tsx │ │ │ ├── EditedContentContext.tsx │ │ │ ├── EditorEnabledContext.tsx │ │ │ ├── EditorProvider.tsx │ │ │ ├── FocusDictionaryContext.tsx │ │ │ ├── index.ts │ │ │ ├── useCrossFrameMessageListener.tsx │ │ │ ├── useCrossFrameState.tsx │ │ │ ├── useCrossURLPathState.tsx │ │ │ ├── useEditorLocale.tsx │ │ │ ├── useFocusUnmergedDictionary.tsx │ │ │ └── useIframeClickInterceptor.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── editor │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── compareUrls.ts │ │ │ ├── index.ts │ │ │ ├── mergeIframeClick.ts │ │ │ └── messagesKeys.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── fetch-dictionaries-entry │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── mcp │ │ ├── .env.template │ │ ├── .npmignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── client │ │ │ │ ├── client.ts │ │ │ │ └── sse.ts │ │ │ ├── server │ │ │ │ ├── server.ts │ │ │ │ ├── sse.ts │ │ │ │ └── stdio.ts │ │ │ └── tools │ │ │ │ ├── cli.ts │ │ │ │ └── docs.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── remote-dictionaries-entry │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── svelte-compiler │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── SvelteIntlayerCompiler.ts │ │ │ ├── index.ts │ │ │ └── svelte-intlayer-extract.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── swc │ │ ├── .cargo │ │ │ └── config.toml │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── package.json │ │ ├── src │ │ │ └── lib.rs │ │ └── target │ │ │ └── wasm32-wasip1 │ │ │ └── release │ │ │ └── intlayer_swc_plugin.wasm │ ├── types │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── config.ts │ │ │ ├── dictionary.ts │ │ │ ├── index.ts │ │ │ ├── keyPath.ts │ │ │ ├── locales.ts │ │ │ ├── module_augmentation.ts │ │ │ ├── nodeType.ts │ │ │ └── plugin.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ ├── types │ │ │ └── index.d.ts │ │ └── vitest.config.ts │ ├── unmerged-dictionaries-entry │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ ├── vue-compiler │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── VueIntlayerCompiler.ts │ │ │ ├── index.ts │ │ │ └── vue-intlayer-extract.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts │ └── webpack │ │ ├── .npmignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── getEntries.ts │ │ ├── index.ts │ │ ├── utils.ts │ │ ├── webpack-plugin.ts │ │ └── webpack.config.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ ├── tsdown.config.ts │ │ └── vitest.config.ts ├── angular-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── UI │ │ │ └── ContentSelector.component.ts │ │ ├── client │ │ │ ├── index.ts │ │ │ ├── installIntlayer.ts │ │ │ ├── useDictionary.ts │ │ │ ├── useDictionaryAsync.ts │ │ │ ├── useDictionaryDynamic.ts │ │ │ ├── useIntlayer.ts │ │ │ ├── useLoadDynamic.ts │ │ │ ├── useLocale.ts │ │ │ └── useLocaleStorage.ts │ │ ├── editor │ │ │ ├── ContentSelectorWrapper.component.ts │ │ │ ├── EditedContentRenderer.component.ts │ │ │ ├── EditorSelectorRenderer.component.ts │ │ │ ├── communicator.ts │ │ │ ├── configuration.ts │ │ │ ├── createSharedComposable.ts │ │ │ ├── dictionariesRecord.ts │ │ │ ├── editedContent.ts │ │ │ ├── editorEnabled.ts │ │ │ ├── editorLocale.ts │ │ │ ├── focusDictionary.ts │ │ │ ├── index.ts │ │ │ ├── installIntlayerEditor.ts │ │ │ ├── useCrossFrameMessageListener.ts │ │ │ ├── useCrossFrameState.ts │ │ │ ├── useCrossURLPathState.ts │ │ │ ├── useEditedContentRenderer.ts │ │ │ ├── useEditor.ts │ │ │ └── useIframeClickInterceptor.ts │ │ ├── getDictionary.ts │ │ ├── getIntlayer.ts │ │ ├── index.ts │ │ ├── markdown │ │ │ ├── index.ts │ │ │ └── installIntlayerMarkdown.ts │ │ ├── plugins.ts │ │ ├── renderIntlayerNode.ts │ │ └── webpack │ │ │ ├── index.ts │ │ │ └── mergeConfig.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── astro-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── express-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── intlayer-cli │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── intlayer-editor │ ├── .gitignore │ ├── README.md │ ├── bin │ │ └── intlayer-editor.mjs │ ├── client │ │ ├── index.html │ │ ├── public │ │ │ └── favicon.ico │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Figtree-VariableFont.ttf │ │ │ │ │ └── Inter-VariableFont.ttf │ │ │ ├── components │ │ │ │ ├── AnimatePresenceProvider.tsx │ │ │ │ ├── AppProvider.tsx │ │ │ │ ├── AppRouter.tsx │ │ │ │ └── Editor │ │ │ │ │ ├── DictionaryEditionDrawer │ │ │ │ │ ├── DictionaryEditionDrawer.tsx │ │ │ │ │ ├── dictionaryEditionDrawer.content.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useDictionaryEditionDrawer.ts │ │ │ │ │ ├── DictionaryListDrawer │ │ │ │ │ ├── DictionaryListDrawer.tsx │ │ │ │ │ ├── dictionaryListDrawer.content.ts │ │ │ │ │ ├── dictionaryListDrawerIdentifier.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── EditorLayout.tsx │ │ │ │ │ ├── EditorProvider.tsx │ │ │ │ │ ├── IframeController.tsx │ │ │ │ │ ├── LongPressMessage │ │ │ │ │ ├── index.content.ts │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── NoApplicationURLView │ │ │ │ │ ├── NoApplicationURLView.tsx │ │ │ │ │ └── noApplicationURLView.content.ts │ │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── useEditedContentPersistence.ts │ │ │ │ └── useIntlayerConfig.ts │ │ │ ├── index.css │ │ │ ├── main.tsx │ │ │ ├── utils │ │ │ │ └── cn.ts │ │ │ └── vite-env.d.ts │ │ └── vite.config.ts │ ├── intlayer.config.ts │ ├── package.json │ ├── server │ │ ├── src │ │ │ ├── controllers │ │ │ │ ├── configuration.controller.ts │ │ │ │ └── dictionary.controller.ts │ │ │ ├── export.ts │ │ │ ├── index.ts │ │ │ ├── routes │ │ │ │ ├── config.routes.ts │ │ │ │ └── dictionary.routes.ts │ │ │ ├── types │ │ │ │ └── Routes.ts │ │ │ └── utils │ │ │ │ ├── checkPortAvailability.ts │ │ │ │ ├── httpStatusCodes.ts │ │ │ │ └── responseData.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.types.json │ │ └── tsdown.config.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vitest.config.ts ├── intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── cli │ │ │ ├── index.ts │ │ │ └── script.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── lynx-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── intlayerPolyfill.ts │ │ └── plugin │ │ │ ├── index.ts │ │ │ └── pluginIntlayerLynx.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── next-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── client │ │ │ ├── IntlayerClientProvider.tsx │ │ │ ├── format │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── useLocale.ts │ │ │ └── useLocalePageRouter.ts │ │ ├── generateStaticParams.ts │ │ ├── index.ts │ │ ├── proxy │ │ │ ├── index.ts │ │ │ ├── intlayerProxy.ts │ │ │ ├── localeDetector.ts │ │ │ ├── middleware.ts │ │ │ └── multipleProxies.ts │ │ ├── server │ │ │ ├── format │ │ │ │ └── index.ts │ │ │ ├── getLocale.ts │ │ │ ├── index.ts │ │ │ └── withIntlayer.ts │ │ └── types │ │ │ ├── NextPage.ts │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── nuxt-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── module.ts │ │ └── runtime │ │ │ ├── html-lang.ts │ │ │ └── intlayer-plugin.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── preact-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── IntlayerNode.tsx │ │ ├── UI │ │ │ └── ContentSelector.tsx │ │ ├── client │ │ │ ├── IntlayerProvider.tsx │ │ │ ├── format │ │ │ │ ├── index.ts │ │ │ │ ├── useCompact.ts │ │ │ │ ├── useCurrency.ts │ │ │ │ ├── useDate.ts │ │ │ │ ├── useList.ts │ │ │ │ ├── useNumber.ts │ │ │ │ ├── usePercentage.ts │ │ │ │ ├── useRelativeTime.ts │ │ │ │ └── useUnit.ts │ │ │ ├── index.ts │ │ │ ├── t.ts │ │ │ ├── useContent.ts │ │ │ ├── useDictionary.ts │ │ │ ├── useDictionaryAsync.ts │ │ │ ├── useDictionaryDynamic.ts │ │ │ ├── useIntlayer.ts │ │ │ ├── useLoadDynamic.ts │ │ │ ├── useLocale.ts │ │ │ ├── useLocaleBase.ts │ │ │ ├── useLocaleStorage.ts │ │ │ └── useTraduction.ts │ │ ├── editor │ │ │ ├── CommunicatorContext.tsx │ │ │ ├── ConfigurationContext.tsx │ │ │ ├── ContentSelectorWrapper.tsx │ │ │ ├── DictionariesRecordContext.tsx │ │ │ ├── EditedContentContext.tsx │ │ │ ├── EditorEnabledContext.tsx │ │ │ ├── EditorProvider.tsx │ │ │ ├── FocusDictionaryContext.tsx │ │ │ ├── IntlayerEditorProvider.tsx │ │ │ ├── index.ts │ │ │ ├── useCrossFrameMessageListener.tsx │ │ │ ├── useCrossFrameState.tsx │ │ │ ├── useCrossURLPathState.tsx │ │ │ ├── useEditedContentRenderer.tsx │ │ │ └── useIframeClickInterceptor.tsx │ │ ├── getDictionary.ts │ │ ├── getIntlayer.ts │ │ ├── index.ts │ │ ├── markdown │ │ │ ├── MarkdownProvider.tsx │ │ │ ├── MarkdownRenderer.tsx │ │ │ └── index.ts │ │ ├── plugins.tsx │ │ └── preactElement │ │ │ └── renderPreactElement.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── react-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── IntlayerNode.tsx │ │ ├── UI │ │ │ └── ContentSelector.tsx │ │ ├── client │ │ │ ├── IntlayerProvider.tsx │ │ │ ├── format │ │ │ │ ├── index.ts │ │ │ │ ├── useCompact.ts │ │ │ │ ├── useCurrency.ts │ │ │ │ ├── useDate.ts │ │ │ │ ├── useList.ts │ │ │ │ ├── useNumber.ts │ │ │ │ ├── usePercentage.ts │ │ │ │ ├── useRelativeTime.ts │ │ │ │ └── useUnit.ts │ │ │ ├── index.ts │ │ │ ├── t.ts │ │ │ ├── useDictionary.ts │ │ │ ├── useDictionaryAsync.ts │ │ │ ├── useDictionaryDynamic.ts │ │ │ ├── useI18n.ts │ │ │ ├── useIntlayer.ts │ │ │ ├── useLoadDynamic.ts │ │ │ ├── useLocale.ts │ │ │ ├── useLocaleBase.ts │ │ │ ├── useLocaleStorage.ts │ │ │ └── useTraduction.ts │ │ ├── editor │ │ │ ├── ContentSelectorWrapper.tsx │ │ │ ├── IntlayerEditorProvider.tsx │ │ │ ├── index.ts │ │ │ └── useEditedContentRenderer.tsx │ │ ├── getDictionary.ts │ │ ├── getIntlayer.ts │ │ ├── index.ts │ │ ├── markdown │ │ │ ├── MarkdownProvider.tsx │ │ │ ├── MarkdownRenderer.tsx │ │ │ └── index.ts │ │ ├── plugins.tsx │ │ ├── reactElement │ │ │ └── renderReactElement.ts │ │ └── server │ │ │ ├── IntlayerServerProvider.tsx │ │ │ ├── format │ │ │ ├── index.ts │ │ │ ├── useCompact.ts │ │ │ ├── useCurrency.ts │ │ │ ├── useDate.ts │ │ │ ├── useList.ts │ │ │ ├── useNumber.ts │ │ │ ├── usePercentage.ts │ │ │ ├── useRelativeTime.ts │ │ │ └── useUnit.ts │ │ │ ├── index.ts │ │ │ ├── serverContext.tsx │ │ │ ├── t.ts │ │ │ ├── useDictionary.ts │ │ │ ├── useDictionaryAsync.ts │ │ │ ├── useDictionaryDynamic.ts │ │ │ ├── useI18n.ts │ │ │ ├── useIntlayer.ts │ │ │ ├── useLoadDynamic.ts │ │ │ └── useLocale.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── react-native-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── configMetroIntlayer.ts │ │ ├── exclusionList.ts │ │ ├── index.ts │ │ ├── intlayerPolyfill.ts │ │ ├── intlayerProvider.tsx │ │ └── metro.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── react-scripts-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── cli │ │ │ └── react-scripts-intlayer.ts │ │ ├── craco.config.ts │ │ ├── index.ts │ │ └── intlayerCracoPlugin.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── solid-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── IntlayerNode.tsx │ │ ├── UI │ │ │ └── ContentSelector.tsx │ │ ├── client │ │ │ ├── IntlayerProvider.tsx │ │ │ ├── getBrowserLocale.tsx │ │ │ ├── index.ts │ │ │ ├── t.ts │ │ │ ├── useContent.ts │ │ │ ├── useDictionary.ts │ │ │ ├── useDictionaryAsync.ts │ │ │ ├── useDictionaryDynamic.ts │ │ │ ├── useIntlayer.ts │ │ │ ├── useLoadDynamic.ts │ │ │ ├── useLocale.ts │ │ │ ├── useLocaleBase.ts │ │ │ ├── useLocaleStorage.ts │ │ │ └── useTraduction.ts │ │ ├── editor │ │ │ ├── ContentSelectorWrapper.tsx │ │ │ ├── IntlayerEditorProvider.tsx │ │ │ ├── contexts │ │ │ │ ├── CommunicatorContext.tsx │ │ │ │ ├── ConfigurationContext.tsx │ │ │ │ ├── DictionariesRecordContext.tsx │ │ │ │ ├── EditedContentContext.tsx │ │ │ │ ├── EditorEnabledContext.tsx │ │ │ │ ├── EditorProvider.tsx │ │ │ │ ├── FocusDictionaryContext.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── useCrossFrameMessageListener.tsx │ │ │ │ ├── useCrossFrameState.tsx │ │ │ │ ├── useCrossURLPathState.tsx │ │ │ │ └── useIframeClickInterceptor.tsx │ │ │ ├── index.ts │ │ │ └── useEditedContentRenderer.tsx │ │ ├── getDictionary.ts │ │ ├── getIntlayer.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── markdown │ │ │ ├── MarkdownProvider.tsx │ │ │ ├── MarkdownRenderer.tsx │ │ │ └── index.ts │ │ ├── plugins.tsx │ │ └── solidElement │ │ │ └── renderSolidElement.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── vite.config.ts │ └── vitest.config.ts ├── svelte-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── IntlayerNodeWrapper.svelte │ │ ├── client │ │ │ ├── getBrowserLocale.ts │ │ │ ├── index.ts │ │ │ ├── intlayerContext.ts │ │ │ ├── intlayerStore.ts │ │ │ ├── setupIntlayer.svelte.ts │ │ │ ├── useDictionary.ts │ │ │ ├── useDictionaryAsync.ts │ │ │ ├── useDictionaryDynamic.ts │ │ │ ├── useIntlayer.ts │ │ │ ├── useLocale.ts │ │ │ └── useLocaleStorage.ts │ │ ├── editor │ │ │ ├── ContentSelector.svelte │ │ │ ├── ContentSelectorWrapper.svelte │ │ │ ├── communicator.ts │ │ │ ├── dictionariesRecord.ts │ │ │ ├── editorEnabled.ts │ │ │ ├── focusDictionary.ts │ │ │ ├── index.ts │ │ │ ├── useCrossFrameMessageListener.ts │ │ │ ├── useCrossFrameState.ts │ │ │ ├── useEditor.ts │ │ │ └── useIframeClickInterceptor.ts │ │ ├── getDictionary.ts │ │ ├── getIntlayer.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── markdown │ │ │ ├── MarkdownMetadataRenderer.svelte │ │ │ ├── MarkdownMetadataWithSelector.svelte │ │ │ ├── MarkdownProvider.svelte │ │ │ ├── MarkdownRenderer.svelte │ │ │ ├── MarkdownWithSelector.svelte │ │ │ ├── context.ts │ │ │ └── index.ts │ │ ├── plugins.ts │ │ ├── renderIntlayerNode.ts │ │ └── setIntlayerMarkdown.ts │ ├── svelte.config.js │ ├── tsconfig.json │ ├── tsconfig.types.json │ └── vitest.config.ts ├── vite-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── IntlayerCompilerPlugin.ts │ │ ├── index.ts │ │ ├── intlayerPlugin.ts │ │ ├── intlayerProxyPlugin.ts │ │ ├── intlayerPrunePlugin.ts │ │ └── intlayerVueAsyncPlugin.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts └── vue-intlayer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ ├── UI │ │ └── ContentSelector.vue │ ├── client │ │ ├── index.ts │ │ ├── installIntlayer.ts │ │ ├── useDictionary.ts │ │ ├── useDictionaryAsync.ts │ │ ├── useDictionaryDynamic.ts │ │ ├── useIntlayer.ts │ │ ├── useLoadDynamic.ts │ │ ├── useLocale.ts │ │ └── useLocaleStorage.ts │ ├── editor │ │ ├── ContentSelectorWrapper.vue │ │ ├── EditedContentRenderer.vue │ │ ├── EditorSelectorRenderer.vue │ │ ├── communicator.ts │ │ ├── configuration.ts │ │ ├── createSharedComposable.ts │ │ ├── dictionariesRecord.ts │ │ ├── editedContent.ts │ │ ├── editorEnabled.ts │ │ ├── editorLocale.ts │ │ ├── focusDictionary.ts │ │ ├── index.ts │ │ ├── installIntlayerEditor.ts │ │ ├── useCrossFrameMessageListener.ts │ │ ├── useCrossFrameState.ts │ │ ├── useCrossURLPathState.ts │ │ ├── useEditedContentRenderer.ts │ │ ├── useEditor.ts │ │ └── useIframeClickInterceptor.ts │ ├── format │ │ ├── index.ts │ │ ├── useCompact.ts │ │ ├── useCurrency.ts │ │ ├── useDate.ts │ │ ├── useList.ts │ │ ├── useNumber.ts │ │ ├── usePercentage.ts │ │ ├── useRelativeTime.ts │ │ └── useUnit.ts │ ├── getDictionary.ts │ ├── getIntlayer.ts │ ├── index.test.ts │ ├── index.ts │ ├── markdown │ │ ├── index.ts │ │ └── installIntlayerMarkdown.ts │ ├── plugins.ts │ └── renderIntlayerNode.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── vite.config.ts │ ├── vitest.config.ts │ └── vue-shims.d.ts ├── plugins ├── svelte-transformer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── sync-json-plugin │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── loadJSON.ts │ │ └── syncJSON.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts └── vue-transformer │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.types.json │ ├── tsdown.config.ts │ └── vitest.config.ts ├── scripts ├── docker-build-website.sh ├── package-build-order.mjs ├── script-dev-package-command.mjs └── script-pick.mjs ├── tsconfig.json ├── turbo.json ├── utils ├── ts-config-types │ ├── package.json │ └── tsconfig.json ├── ts-config │ ├── package.json │ └── tsconfig.json └── tsdown-config │ ├── asset-plugin-virtual-source.mjs │ ├── asset-plugin.mjs │ ├── package.json │ ├── tsconfig.json │ └── tsdown-config.mjs └── vitest.config.ts /.biomeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.biomeignore -------------------------------------------------------------------------------- /.cursor/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.cursor/mcp.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [aypineau] 4 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/changeset-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.github/changeset-version.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/README.md -------------------------------------------------------------------------------- /apps/backend/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/.env.template -------------------------------------------------------------------------------- /apps/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/.gitignore -------------------------------------------------------------------------------- /apps/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/Dockerfile -------------------------------------------------------------------------------- /apps/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/README.md -------------------------------------------------------------------------------- /apps/backend/intlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/intlayer.config.ts -------------------------------------------------------------------------------- /apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/package.json -------------------------------------------------------------------------------- /apps/backend/src/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/emails/index.ts -------------------------------------------------------------------------------- /apps/backend/src/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/export.ts -------------------------------------------------------------------------------- /apps/backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/index.ts -------------------------------------------------------------------------------- /apps/backend/src/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/logger/index.ts -------------------------------------------------------------------------------- /apps/backend/src/types/Routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/types/Routes.ts -------------------------------------------------------------------------------- /apps/backend/src/utils/access.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/backend/src/utils/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/utils/cors.ts -------------------------------------------------------------------------------- /apps/backend/src/utils/oAuth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/utils/oAuth2.ts -------------------------------------------------------------------------------- /apps/backend/src/utils/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/src/utils/plan.ts -------------------------------------------------------------------------------- /apps/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/tsconfig.json -------------------------------------------------------------------------------- /apps/backend/tsconfig.types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/tsconfig.types.json -------------------------------------------------------------------------------- /apps/backend/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/tsdown.config.ts -------------------------------------------------------------------------------- /apps/backend/types/oAuth2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/types/oAuth2.d.ts -------------------------------------------------------------------------------- /apps/backend/types/tsdown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/types/tsdown.d.ts -------------------------------------------------------------------------------- /apps/backend/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/backend/vitest.config.ts -------------------------------------------------------------------------------- /apps/website/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/.env.template -------------------------------------------------------------------------------- /apps/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/.gitignore -------------------------------------------------------------------------------- /apps/website/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/Dockerfile -------------------------------------------------------------------------------- /apps/website/intlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/intlayer.config.ts -------------------------------------------------------------------------------- /apps/website/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/next.config.ts -------------------------------------------------------------------------------- /apps/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/package.json -------------------------------------------------------------------------------- /apps/website/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/postcss.config.mjs -------------------------------------------------------------------------------- /apps/website/public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/public/cover.png -------------------------------------------------------------------------------- /apps/website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/public/favicon.ico -------------------------------------------------------------------------------- /apps/website/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/public/logo.svg -------------------------------------------------------------------------------- /apps/website/public/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/public/schema.json -------------------------------------------------------------------------------- /apps/website/src/Routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/Routes.ts -------------------------------------------------------------------------------- /apps/website/src/app/404/layout.tsx: -------------------------------------------------------------------------------- 1 | export { default } from '../[locale]/(landing)/[...not-found]/layout'; 2 | -------------------------------------------------------------------------------- /apps/website/src/app/404/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/app/404/page.tsx -------------------------------------------------------------------------------- /apps/website/src/app/[locale]/(landing)/404/layout.tsx: -------------------------------------------------------------------------------- 1 | export { default } from '../[...not-found]/layout'; 2 | -------------------------------------------------------------------------------- /apps/website/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/website/src/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/app/manifest.ts -------------------------------------------------------------------------------- /apps/website/src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/app/robots.ts -------------------------------------------------------------------------------- /apps/website/src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/app/sitemap.ts -------------------------------------------------------------------------------- /apps/website/src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/assets/github.svg -------------------------------------------------------------------------------- /apps/website/src/assets/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/assets/google.svg -------------------------------------------------------------------------------- /apps/website/src/components/Auth/ExternalsLoginButtons/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ExternalsLoginButtons'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/Auth/MagicLinkButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MagicLinkButton'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/Auth/PassKeyButton/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PassKeyButton'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/Auth/TotpForm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TotpForm'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/Auth/VerifyEmail/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './VerifyEmailForm'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/OnboardPage/DefinePasswordStep/index.ts: -------------------------------------------------------------------------------- 1 | export * from './DefinePasswordStepForm'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/OnboardPage/PaymentStep/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PaymentStepForm'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/OnboardPage/RegisterStep/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './RegisterStepForm'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/OnboardPage/SetUpOrganizationStep/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SetUpOrganizationStepForm'; 2 | -------------------------------------------------------------------------------- /apps/website/src/components/OnboardPage/VerifyEmailStep/index.ts: -------------------------------------------------------------------------------- 1 | export * from './VerifyEmailStepForm'; 2 | -------------------------------------------------------------------------------- /apps/website/src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/globals.css -------------------------------------------------------------------------------- /apps/website/src/monaco.css: -------------------------------------------------------------------------------- 1 | .monaco-editor { 2 | --vscode-focusBorder: transparent !important; 3 | } 4 | -------------------------------------------------------------------------------- /apps/website/src/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/proxy.ts -------------------------------------------------------------------------------- /apps/website/src/shiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/shiki.css -------------------------------------------------------------------------------- /apps/website/src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/utils/cn.ts -------------------------------------------------------------------------------- /apps/website/src/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/src/utils/markdown.ts -------------------------------------------------------------------------------- /apps/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/apps/website/tsconfig.json -------------------------------------------------------------------------------- /apps/website/types/markdown.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.md'; 2 | -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/bun.lock -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /docs/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/.env.template -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/AI_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/AI_translation.png -------------------------------------------------------------------------------- /docs/assets/CMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/CMS.png -------------------------------------------------------------------------------- /docs/assets/autocompletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/autocompletion.png -------------------------------------------------------------------------------- /docs/assets/bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/bundle.png -------------------------------------------------------------------------------- /docs/assets/compiler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/compiler.jpg -------------------------------------------------------------------------------- /docs/assets/config_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/config_file.png -------------------------------------------------------------------------------- /docs/assets/content_retrieval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/content_retrieval.png -------------------------------------------------------------------------------- /docs/assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/cover.png -------------------------------------------------------------------------------- /docs/assets/demo_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/demo_video.gif -------------------------------------------------------------------------------- /docs/assets/file_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/file_tree.png -------------------------------------------------------------------------------- /docs/assets/frameworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/frameworks.png -------------------------------------------------------------------------------- /docs/assets/i18n.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/i18n.webp -------------------------------------------------------------------------------- /docs/assets/i18n_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/i18n_2.webp -------------------------------------------------------------------------------- /docs/assets/interoperability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/interoperability.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/markdown.png -------------------------------------------------------------------------------- /docs/assets/mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/mcp.png -------------------------------------------------------------------------------- /docs/assets/pain_i18n.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/pain_i18n.webp -------------------------------------------------------------------------------- /docs/assets/rag_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/rag_flow.svg -------------------------------------------------------------------------------- /docs/assets/server_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/server_component.png -------------------------------------------------------------------------------- /docs/assets/star_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/star_banner.png -------------------------------------------------------------------------------- /docs/assets/static_rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/static_rendering.png -------------------------------------------------------------------------------- /docs/assets/translation_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/translation_error.png -------------------------------------------------------------------------------- /docs/assets/url_routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/url_routing.png -------------------------------------------------------------------------------- /docs/assets/visual_editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/visual_editor.gif -------------------------------------------------------------------------------- /docs/assets/visual_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/visual_editor.png -------------------------------------------------------------------------------- /docs/assets/vscode_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/assets/vscode_extension.png -------------------------------------------------------------------------------- /docs/blog/ar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/ar/index.md -------------------------------------------------------------------------------- /docs/blog/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/de/index.md -------------------------------------------------------------------------------- /docs/blog/en-GB/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/en-GB/index.md -------------------------------------------------------------------------------- /docs/blog/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/en/index.md -------------------------------------------------------------------------------- /docs/blog/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/es/index.md -------------------------------------------------------------------------------- /docs/blog/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/fr/index.md -------------------------------------------------------------------------------- /docs/blog/hi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/hi/index.md -------------------------------------------------------------------------------- /docs/blog/id/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/id/index.md -------------------------------------------------------------------------------- /docs/blog/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/it/index.md -------------------------------------------------------------------------------- /docs/blog/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/ja/index.md -------------------------------------------------------------------------------- /docs/blog/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/ko/index.md -------------------------------------------------------------------------------- /docs/blog/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/pl/index.md -------------------------------------------------------------------------------- /docs/blog/pt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/pt/index.md -------------------------------------------------------------------------------- /docs/blog/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/ru/index.md -------------------------------------------------------------------------------- /docs/blog/tr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/tr/index.md -------------------------------------------------------------------------------- /docs/blog/vi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/vi/index.md -------------------------------------------------------------------------------- /docs/blog/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/blog/zh/index.md -------------------------------------------------------------------------------- /docs/docs/ar/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/ar/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/autoFill.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/build.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/index.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/list.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/live.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/push.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/test.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/version.md -------------------------------------------------------------------------------- /docs/docs/ar/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/ar/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/compiler.md -------------------------------------------------------------------------------- /docs/docs/ar/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/ar/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/configuration.md -------------------------------------------------------------------------------- /docs/docs/ar/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/ar/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/ar/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/ar/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/formatters.md -------------------------------------------------------------------------------- /docs/docs/ar/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/ar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/index.md -------------------------------------------------------------------------------- /docs/docs/ar/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/ar/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/ar/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/introduction.md -------------------------------------------------------------------------------- /docs/docs/ar/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/ar/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/ar/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/ar/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/ar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/readme.md -------------------------------------------------------------------------------- /docs/docs/ar/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/ar/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/ar/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/roadmap.md -------------------------------------------------------------------------------- /docs/docs/ar/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/testing.md -------------------------------------------------------------------------------- /docs/docs/ar/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ar/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/de/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/de/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/autoFill.md -------------------------------------------------------------------------------- /docs/docs/de/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/build.md -------------------------------------------------------------------------------- /docs/docs/de/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/de/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/de/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/de/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/de/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/de/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/de/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/index.md -------------------------------------------------------------------------------- /docs/docs/de/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/list.md -------------------------------------------------------------------------------- /docs/docs/de/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/live.md -------------------------------------------------------------------------------- /docs/docs/de/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/de/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/push.md -------------------------------------------------------------------------------- /docs/docs/de/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/de/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/test.md -------------------------------------------------------------------------------- /docs/docs/de/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/de/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/version.md -------------------------------------------------------------------------------- /docs/docs/de/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/de/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/compiler.md -------------------------------------------------------------------------------- /docs/docs/de/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/de/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/configuration.md -------------------------------------------------------------------------------- /docs/docs/de/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/de/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/de/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/de/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/formatters.md -------------------------------------------------------------------------------- /docs/docs/de/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/index.md -------------------------------------------------------------------------------- /docs/docs/de/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/de/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/de/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/introduction.md -------------------------------------------------------------------------------- /docs/docs/de/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/de/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/de/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/de/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/de/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/readme.md -------------------------------------------------------------------------------- /docs/docs/de/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/de/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/de/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/roadmap.md -------------------------------------------------------------------------------- /docs/docs/de/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/testing.md -------------------------------------------------------------------------------- /docs/docs/de/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/de/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/en-GB/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/en-GB/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/autoFill.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/build.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/index.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/list.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/live.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/push.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/test.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/version.md -------------------------------------------------------------------------------- /docs/docs/en-GB/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/en-GB/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/compiler.md -------------------------------------------------------------------------------- /docs/docs/en-GB/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/en-GB/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/configuration.md -------------------------------------------------------------------------------- /docs/docs/en-GB/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/en-GB/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/formatters.md -------------------------------------------------------------------------------- /docs/docs/en-GB/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/index.md -------------------------------------------------------------------------------- /docs/docs/en-GB/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/en-GB/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/introduction.md -------------------------------------------------------------------------------- /docs/docs/en-GB/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/en-GB/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/en-GB/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/en-GB/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/readme.md -------------------------------------------------------------------------------- /docs/docs/en-GB/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/en-GB/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/en-GB/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/roadmap.md -------------------------------------------------------------------------------- /docs/docs/en-GB/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en-GB/testing.md -------------------------------------------------------------------------------- /docs/docs/en/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/en/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/autoFill.md -------------------------------------------------------------------------------- /docs/docs/en/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/build.md -------------------------------------------------------------------------------- /docs/docs/en/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/en/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/en/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/en/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/en/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/en/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/en/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/index.md -------------------------------------------------------------------------------- /docs/docs/en/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/list.md -------------------------------------------------------------------------------- /docs/docs/en/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/live.md -------------------------------------------------------------------------------- /docs/docs/en/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/en/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/push.md -------------------------------------------------------------------------------- /docs/docs/en/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/en/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/test.md -------------------------------------------------------------------------------- /docs/docs/en/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/en/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/version.md -------------------------------------------------------------------------------- /docs/docs/en/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/en/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/compiler.md -------------------------------------------------------------------------------- /docs/docs/en/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/en/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/configuration.md -------------------------------------------------------------------------------- /docs/docs/en/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/en/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/en/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/en/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/formatters.md -------------------------------------------------------------------------------- /docs/docs/en/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/index.md -------------------------------------------------------------------------------- /docs/docs/en/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/en/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/en/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/introduction.md -------------------------------------------------------------------------------- /docs/docs/en/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/en/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/en/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/en/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/readme.md -------------------------------------------------------------------------------- /docs/docs/en/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/en/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/en/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/roadmap.md -------------------------------------------------------------------------------- /docs/docs/en/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/testing.md -------------------------------------------------------------------------------- /docs/docs/en/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/en/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/es/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/es/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/autoFill.md -------------------------------------------------------------------------------- /docs/docs/es/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/build.md -------------------------------------------------------------------------------- /docs/docs/es/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/es/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/es/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/es/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/es/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/es/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/es/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/index.md -------------------------------------------------------------------------------- /docs/docs/es/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/list.md -------------------------------------------------------------------------------- /docs/docs/es/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/live.md -------------------------------------------------------------------------------- /docs/docs/es/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/es/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/push.md -------------------------------------------------------------------------------- /docs/docs/es/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/es/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/test.md -------------------------------------------------------------------------------- /docs/docs/es/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/es/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/version.md -------------------------------------------------------------------------------- /docs/docs/es/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/es/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/compiler.md -------------------------------------------------------------------------------- /docs/docs/es/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/es/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/configuration.md -------------------------------------------------------------------------------- /docs/docs/es/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/es/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/es/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/es/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/formatters.md -------------------------------------------------------------------------------- /docs/docs/es/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/index.md -------------------------------------------------------------------------------- /docs/docs/es/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/es/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/es/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/introduction.md -------------------------------------------------------------------------------- /docs/docs/es/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/es/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/es/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/es/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/readme.md -------------------------------------------------------------------------------- /docs/docs/es/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/es/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/es/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/roadmap.md -------------------------------------------------------------------------------- /docs/docs/es/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/testing.md -------------------------------------------------------------------------------- /docs/docs/es/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/es/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/fr/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/fr/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/autoFill.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/build.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/index.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/list.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/live.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/push.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/test.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/version.md -------------------------------------------------------------------------------- /docs/docs/fr/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/fr/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/compiler.md -------------------------------------------------------------------------------- /docs/docs/fr/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/fr/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/configuration.md -------------------------------------------------------------------------------- /docs/docs/fr/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/fr/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/fr/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/fr/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/formatters.md -------------------------------------------------------------------------------- /docs/docs/fr/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/index.md -------------------------------------------------------------------------------- /docs/docs/fr/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/fr/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/fr/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/introduction.md -------------------------------------------------------------------------------- /docs/docs/fr/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/fr/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/fr/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/fr/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/fr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/readme.md -------------------------------------------------------------------------------- /docs/docs/fr/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/fr/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/fr/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/roadmap.md -------------------------------------------------------------------------------- /docs/docs/fr/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/testing.md -------------------------------------------------------------------------------- /docs/docs/fr/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/fr/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/hi/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/hi/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/autoFill.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/build.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/index.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/list.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/live.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/push.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/test.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/version.md -------------------------------------------------------------------------------- /docs/docs/hi/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/hi/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/compiler.md -------------------------------------------------------------------------------- /docs/docs/hi/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/hi/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/configuration.md -------------------------------------------------------------------------------- /docs/docs/hi/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/hi/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/hi/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/hi/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/formatters.md -------------------------------------------------------------------------------- /docs/docs/hi/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/hi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/index.md -------------------------------------------------------------------------------- /docs/docs/hi/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/hi/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/hi/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/introduction.md -------------------------------------------------------------------------------- /docs/docs/hi/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/hi/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/hi/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/hi/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/hi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/readme.md -------------------------------------------------------------------------------- /docs/docs/hi/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/hi/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/hi/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/roadmap.md -------------------------------------------------------------------------------- /docs/docs/hi/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/testing.md -------------------------------------------------------------------------------- /docs/docs/hi/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/hi/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/id/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/id/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/autoFill.md -------------------------------------------------------------------------------- /docs/docs/id/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/build.md -------------------------------------------------------------------------------- /docs/docs/id/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/id/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/id/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/id/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/id/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/id/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/id/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/index.md -------------------------------------------------------------------------------- /docs/docs/id/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/list.md -------------------------------------------------------------------------------- /docs/docs/id/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/live.md -------------------------------------------------------------------------------- /docs/docs/id/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/id/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/push.md -------------------------------------------------------------------------------- /docs/docs/id/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/id/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/test.md -------------------------------------------------------------------------------- /docs/docs/id/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/id/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/version.md -------------------------------------------------------------------------------- /docs/docs/id/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/id/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/compiler.md -------------------------------------------------------------------------------- /docs/docs/id/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/id/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/configuration.md -------------------------------------------------------------------------------- /docs/docs/id/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/id/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/id/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/id/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/formatters.md -------------------------------------------------------------------------------- /docs/docs/id/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/id/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/index.md -------------------------------------------------------------------------------- /docs/docs/id/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/id/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/id/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/introduction.md -------------------------------------------------------------------------------- /docs/docs/id/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/id/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/id/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/id/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/id/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/readme.md -------------------------------------------------------------------------------- /docs/docs/id/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/id/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/id/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/roadmap.md -------------------------------------------------------------------------------- /docs/docs/id/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/testing.md -------------------------------------------------------------------------------- /docs/docs/id/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/id/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/it/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/it/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/autoFill.md -------------------------------------------------------------------------------- /docs/docs/it/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/build.md -------------------------------------------------------------------------------- /docs/docs/it/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/it/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/it/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/it/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/it/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/it/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/it/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/index.md -------------------------------------------------------------------------------- /docs/docs/it/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/list.md -------------------------------------------------------------------------------- /docs/docs/it/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/live.md -------------------------------------------------------------------------------- /docs/docs/it/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/it/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/push.md -------------------------------------------------------------------------------- /docs/docs/it/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/it/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/test.md -------------------------------------------------------------------------------- /docs/docs/it/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/it/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/version.md -------------------------------------------------------------------------------- /docs/docs/it/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/it/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/compiler.md -------------------------------------------------------------------------------- /docs/docs/it/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/it/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/configuration.md -------------------------------------------------------------------------------- /docs/docs/it/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/it/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/it/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/it/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/formatters.md -------------------------------------------------------------------------------- /docs/docs/it/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/index.md -------------------------------------------------------------------------------- /docs/docs/it/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/it/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/it/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/introduction.md -------------------------------------------------------------------------------- /docs/docs/it/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/it/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/it/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/it/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/it/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/readme.md -------------------------------------------------------------------------------- /docs/docs/it/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/it/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/it/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/roadmap.md -------------------------------------------------------------------------------- /docs/docs/it/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/testing.md -------------------------------------------------------------------------------- /docs/docs/it/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/it/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/ja/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/ja/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/autoFill.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/build.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/index.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/list.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/live.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/push.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/test.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/version.md -------------------------------------------------------------------------------- /docs/docs/ja/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/ja/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/compiler.md -------------------------------------------------------------------------------- /docs/docs/ja/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/ja/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/configuration.md -------------------------------------------------------------------------------- /docs/docs/ja/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/ja/dictionary/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/dictionary/gender.md -------------------------------------------------------------------------------- /docs/docs/ja/dictionary/nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/dictionary/nesting.md -------------------------------------------------------------------------------- /docs/docs/ja/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/formatters.md -------------------------------------------------------------------------------- /docs/docs/ja/how_works_intlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/how_works_intlayer.md -------------------------------------------------------------------------------- /docs/docs/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/index.md -------------------------------------------------------------------------------- /docs/docs/ja/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/ja/intlayer_with_nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/intlayer_with_nuxt.md -------------------------------------------------------------------------------- /docs/docs/ja/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/introduction.md -------------------------------------------------------------------------------- /docs/docs/ja/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/ja/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/ja/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/ja/plugins/sync-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/plugins/sync-json.md -------------------------------------------------------------------------------- /docs/docs/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/readme.md -------------------------------------------------------------------------------- /docs/docs/ja/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/ja/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/ja/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/roadmap.md -------------------------------------------------------------------------------- /docs/docs/ja/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/testing.md -------------------------------------------------------------------------------- /docs/docs/ja/vs_code_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ja/vs_code_extension.md -------------------------------------------------------------------------------- /docs/docs/ko/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/ko/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/autoFill.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/build.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/configuration.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/doc-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/doc-translate.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/index.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/list.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/live.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/push.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/test.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/version.md -------------------------------------------------------------------------------- /docs/docs/ko/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/ko/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/compiler.md -------------------------------------------------------------------------------- /docs/docs/ko/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/ko/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/configuration.md -------------------------------------------------------------------------------- /docs/docs/ko/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/ko/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/formatters.md -------------------------------------------------------------------------------- /docs/docs/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/index.md -------------------------------------------------------------------------------- /docs/docs/ko/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/ko/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/introduction.md -------------------------------------------------------------------------------- /docs/docs/ko/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/ko/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/ko/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/ko/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/readme.md -------------------------------------------------------------------------------- /docs/docs/ko/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/ko/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/ko/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/roadmap.md -------------------------------------------------------------------------------- /docs/docs/ko/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ko/testing.md -------------------------------------------------------------------------------- /docs/docs/pl/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/pl/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/autoFill.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/build.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/index.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/list.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/live.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/push.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/test.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/version.md -------------------------------------------------------------------------------- /docs/docs/pl/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/pl/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/compiler.md -------------------------------------------------------------------------------- /docs/docs/pl/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/pl/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/configuration.md -------------------------------------------------------------------------------- /docs/docs/pl/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/pl/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/formatters.md -------------------------------------------------------------------------------- /docs/docs/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/index.md -------------------------------------------------------------------------------- /docs/docs/pl/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/pl/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/introduction.md -------------------------------------------------------------------------------- /docs/docs/pl/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/pl/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/pl/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/pl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/readme.md -------------------------------------------------------------------------------- /docs/docs/pl/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/pl/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/pl/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/roadmap.md -------------------------------------------------------------------------------- /docs/docs/pl/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pl/testing.md -------------------------------------------------------------------------------- /docs/docs/pt/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/pt/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/autoFill.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/build.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/index.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/list.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/live.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/push.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/test.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/version.md -------------------------------------------------------------------------------- /docs/docs/pt/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/pt/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/compiler.md -------------------------------------------------------------------------------- /docs/docs/pt/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/pt/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/configuration.md -------------------------------------------------------------------------------- /docs/docs/pt/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/pt/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/formatters.md -------------------------------------------------------------------------------- /docs/docs/pt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/index.md -------------------------------------------------------------------------------- /docs/docs/pt/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/pt/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/introduction.md -------------------------------------------------------------------------------- /docs/docs/pt/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/pt/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/pt/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/pt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/readme.md -------------------------------------------------------------------------------- /docs/docs/pt/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/pt/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/pt/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/roadmap.md -------------------------------------------------------------------------------- /docs/docs/pt/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/pt/testing.md -------------------------------------------------------------------------------- /docs/docs/ru/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/ru/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/autoFill.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/build.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/index.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/list.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/live.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/push.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/test.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/version.md -------------------------------------------------------------------------------- /docs/docs/ru/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/ru/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/compiler.md -------------------------------------------------------------------------------- /docs/docs/ru/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/ru/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/configuration.md -------------------------------------------------------------------------------- /docs/docs/ru/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/ru/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/formatters.md -------------------------------------------------------------------------------- /docs/docs/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/index.md -------------------------------------------------------------------------------- /docs/docs/ru/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/ru/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/introduction.md -------------------------------------------------------------------------------- /docs/docs/ru/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/ru/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/ru/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/ru/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/readme.md -------------------------------------------------------------------------------- /docs/docs/ru/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/ru/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/ru/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/roadmap.md -------------------------------------------------------------------------------- /docs/docs/ru/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/ru/testing.md -------------------------------------------------------------------------------- /docs/docs/tr/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/tr/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/autoFill.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/build.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/index.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/list.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/live.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/push.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/test.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/version.md -------------------------------------------------------------------------------- /docs/docs/tr/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/tr/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/compiler.md -------------------------------------------------------------------------------- /docs/docs/tr/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/tr/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/configuration.md -------------------------------------------------------------------------------- /docs/docs/tr/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/tr/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/formatters.md -------------------------------------------------------------------------------- /docs/docs/tr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/index.md -------------------------------------------------------------------------------- /docs/docs/tr/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/tr/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/introduction.md -------------------------------------------------------------------------------- /docs/docs/tr/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/tr/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/tr/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/tr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/readme.md -------------------------------------------------------------------------------- /docs/docs/tr/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/tr/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/tr/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/roadmap.md -------------------------------------------------------------------------------- /docs/docs/tr/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/tr/testing.md -------------------------------------------------------------------------------- /docs/docs/vi/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/vi/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/autoFill.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/build.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/index.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/list.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/live.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/push.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/test.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/version.md -------------------------------------------------------------------------------- /docs/docs/vi/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/vi/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/compiler.md -------------------------------------------------------------------------------- /docs/docs/vi/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/vi/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/configuration.md -------------------------------------------------------------------------------- /docs/docs/vi/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/vi/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/formatters.md -------------------------------------------------------------------------------- /docs/docs/vi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/index.md -------------------------------------------------------------------------------- /docs/docs/vi/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/vi/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/introduction.md -------------------------------------------------------------------------------- /docs/docs/vi/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/vi/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/vi/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/vi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/readme.md -------------------------------------------------------------------------------- /docs/docs/vi/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/vi/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/vi/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/roadmap.md -------------------------------------------------------------------------------- /docs/docs/vi/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/vi/testing.md -------------------------------------------------------------------------------- /docs/docs/zh/CI_CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/CI_CD.md -------------------------------------------------------------------------------- /docs/docs/zh/autoFill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/autoFill.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/build.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/debug.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/doc-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/doc-review.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/editor.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/fill.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/index.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/list.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/live.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/pull.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/push.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/sdk.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/test.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/transform.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/version.md -------------------------------------------------------------------------------- /docs/docs/zh/cli/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/cli/watch.md -------------------------------------------------------------------------------- /docs/docs/zh/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/compiler.md -------------------------------------------------------------------------------- /docs/docs/zh/component_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/component_i18n.md -------------------------------------------------------------------------------- /docs/docs/zh/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/configuration.md -------------------------------------------------------------------------------- /docs/docs/zh/dictionary/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/dictionary/file.md -------------------------------------------------------------------------------- /docs/docs/zh/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/formatters.md -------------------------------------------------------------------------------- /docs/docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/index.md -------------------------------------------------------------------------------- /docs/docs/zh/intlayer_CMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/intlayer_CMS.md -------------------------------------------------------------------------------- /docs/docs/zh/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/introduction.md -------------------------------------------------------------------------------- /docs/docs/zh/locale_mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/locale_mapper.md -------------------------------------------------------------------------------- /docs/docs/zh/mcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/mcp_server.md -------------------------------------------------------------------------------- /docs/docs/zh/per_locale_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/per_locale_file.md -------------------------------------------------------------------------------- /docs/docs/zh/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/readme.md -------------------------------------------------------------------------------- /docs/docs/zh/releases/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/releases/v6.md -------------------------------------------------------------------------------- /docs/docs/zh/releases/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/releases/v7.md -------------------------------------------------------------------------------- /docs/docs/zh/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/roadmap.md -------------------------------------------------------------------------------- /docs/docs/zh/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/docs/zh/testing.md -------------------------------------------------------------------------------- /docs/intlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/intlayer.config.ts -------------------------------------------------------------------------------- /docs/legal/ar/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/ar/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/de/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/de/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/en/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/en/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/es/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/es/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/fr/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/fr/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/hi/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/hi/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/id/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/id/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/it/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/it/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/ja/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/ja/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/ko/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/ko/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/pl/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/pl/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/pt/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/pt/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/ru/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/ru/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/tr/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/tr/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/vi/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/vi/privacy_notice.md -------------------------------------------------------------------------------- /docs/legal/zh/privacy_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/legal/zh/privacy_notice.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/src/blog.ts -------------------------------------------------------------------------------- /docs/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/src/common.ts -------------------------------------------------------------------------------- /docs/src/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/src/doc.ts -------------------------------------------------------------------------------- /docs/src/frequentQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/src/frequentQuestions.ts -------------------------------------------------------------------------------- /docs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/src/index.ts -------------------------------------------------------------------------------- /docs/src/legal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/src/legal.ts -------------------------------------------------------------------------------- /docs/tools/fixSlugs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/fixSlugs.ts -------------------------------------------------------------------------------- /docs/tools/generateEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/generateEntry.ts -------------------------------------------------------------------------------- /docs/tools/metadataValidity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/metadataValidity.ts -------------------------------------------------------------------------------- /docs/tools/outdatedDocs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/outdatedDocs.test.ts -------------------------------------------------------------------------------- /docs/tools/outdatedDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/outdatedDocs.ts -------------------------------------------------------------------------------- /docs/tools/review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/review.ts -------------------------------------------------------------------------------- /docs/tools/slugConsistancy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/slugConsistancy.ts -------------------------------------------------------------------------------- /docs/tools/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tools/translate.ts -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/tsconfig.types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tsconfig.types.json -------------------------------------------------------------------------------- /docs/tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/tsdown.config.ts -------------------------------------------------------------------------------- /docs/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/docs/vitest.config.ts -------------------------------------------------------------------------------- /examples/angular-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/angular-app/.gitignore -------------------------------------------------------------------------------- /examples/angular-app/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/astro-react-app/src/styles/global.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | -------------------------------------------------------------------------------- /examples/express-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/express-app/.gitignore -------------------------------------------------------------------------------- /examples/json-sync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/json-sync/package.json -------------------------------------------------------------------------------- /examples/json-sync/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/json-sync/src/i18n.ts -------------------------------------------------------------------------------- /examples/json-sync/src/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/json-sync/src/proxy.ts -------------------------------------------------------------------------------- /examples/nest-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nest-app/.gitignore -------------------------------------------------------------------------------- /examples/nest-app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nest-app/.prettierrc -------------------------------------------------------------------------------- /examples/nest-app/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nest-app/nest-cli.json -------------------------------------------------------------------------------- /examples/nest-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nest-app/package.json -------------------------------------------------------------------------------- /examples/nest-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nest-app/src/main.ts -------------------------------------------------------------------------------- /examples/nest-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nest-app/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs-14-app/.intlayerrc: -------------------------------------------------------------------------------- 1 | { 2 | "locales": ["en", "fr"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/nextjs-14-app/src/components/LangSwitcherDropDown/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './LangSwitcher'; 2 | -------------------------------------------------------------------------------- /examples/nuxt-3-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nuxt-3-app/.gitignore -------------------------------------------------------------------------------- /examples/nuxt-3-app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nuxt-3-app/app.vue -------------------------------------------------------------------------------- /examples/nuxt-3-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/nuxt-3-app/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /examples/nuxt-4-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nuxt-4-app/.gitignore -------------------------------------------------------------------------------- /examples/nuxt-4-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nuxt-4-app/README.md -------------------------------------------------------------------------------- /examples/nuxt-4-app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/nuxt-4-app/app.vue -------------------------------------------------------------------------------- /examples/nuxt-4-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/react-app/.gitignore -------------------------------------------------------------------------------- /examples/react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/react-app/package.json -------------------------------------------------------------------------------- /examples/react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/react-app/src/App.css -------------------------------------------------------------------------------- /examples/react-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/react-app/src/App.tsx -------------------------------------------------------------------------------- /examples/react-app/src/components/LangSwitcherDropDown/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './LangSwitcher'; 2 | -------------------------------------------------------------------------------- /examples/react-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/examples/react-app/src/logo.svg -------------------------------------------------------------------------------- /examples/react-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vite-preact-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vite-react-app/src/test.md: -------------------------------------------------------------------------------- 1 | ### TESTkk 2 | -------------------------------------------------------------------------------- /examples/vite-react-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vite-solid-app/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vite-vue-app/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /intlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/intlayer.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/package.json -------------------------------------------------------------------------------- /packages/@intlayer/ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/@intlayer/ai/README.md -------------------------------------------------------------------------------- /packages/@intlayer/config/src/defaultValues/dictionary.ts: -------------------------------------------------------------------------------- 1 | export const FILL = true; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/core/src/transpiler/condition/index.ts: -------------------------------------------------------------------------------- 1 | export * from './condition'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/core/src/transpiler/enumeration/index.ts: -------------------------------------------------------------------------------- 1 | export * from './enumeration'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/core/src/transpiler/file/index.ts: -------------------------------------------------------------------------------- 1 | export * from './file'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/core/src/transpiler/gender/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gender'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/core/src/transpiler/nesting/index.ts: -------------------------------------------------------------------------------- 1 | export * from './nesting'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/core/src/transpiler/translation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './translation'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Accordion/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Accordion'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Browser/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Browser'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Button/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Button'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/CollapsibleTable/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './CollapsibleTable'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/ContentSelector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContentSelector'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/DictionaryEditor/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './DictionaryEditor'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/ExpandCollapse/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './ExpandCollapse'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Link/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Link'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/LocaleSwitcherDropDown/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './LocaleSwitcher'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/MarkDownRender/index.ts: -------------------------------------------------------------------------------- 1 | export * from './MarkDownRender'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Modal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Modal'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/PressableSpan/index.ts: -------------------------------------------------------------------------------- 1 | export * from './PressableSpan'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Tab/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Tab'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/TabSelector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './TabSelector'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Table/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Table'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/components/Terminal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Terminal'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/src/libs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth'; 2 | -------------------------------------------------------------------------------- /packages/@intlayer/design-system/tw-source.css: -------------------------------------------------------------------------------- 1 | @source "./src/**/*.{ts,tsx,svg}"; 2 | -------------------------------------------------------------------------------- /packages/angular-intlayer/src/markdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './installIntlayerMarkdown'; 2 | -------------------------------------------------------------------------------- /packages/angular-intlayer/src/webpack/index.ts: -------------------------------------------------------------------------------- 1 | export * from './mergeConfig'; 2 | -------------------------------------------------------------------------------- /packages/intlayer-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/intlayer-cli/README.md -------------------------------------------------------------------------------- /packages/intlayer-editor/client/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/intlayer/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/intlayer/.npmignore -------------------------------------------------------------------------------- /packages/intlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/intlayer/README.md -------------------------------------------------------------------------------- /packages/intlayer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/intlayer/package.json -------------------------------------------------------------------------------- /packages/intlayer/src/cli/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@intlayer/cli'; 2 | -------------------------------------------------------------------------------- /packages/intlayer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/intlayer/src/index.ts -------------------------------------------------------------------------------- /packages/intlayer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/intlayer/tsconfig.json -------------------------------------------------------------------------------- /packages/lynx-intlayer/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './intlayerPolyfill'; 2 | -------------------------------------------------------------------------------- /packages/lynx-intlayer/src/plugin/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pluginIntlayerLynx'; 2 | -------------------------------------------------------------------------------- /packages/preact-intlayer/src/editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContentSelectorWrapper'; 2 | -------------------------------------------------------------------------------- /packages/react-intlayer/src/editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContentSelectorWrapper'; 2 | -------------------------------------------------------------------------------- /packages/react-native-intlayer/src/metro.ts: -------------------------------------------------------------------------------- 1 | export * from './configMetroIntlayer'; 2 | -------------------------------------------------------------------------------- /packages/solid-intlayer/src/editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ContentSelectorWrapper'; 2 | -------------------------------------------------------------------------------- /packages/vue-intlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/packages/vue-intlayer/README.md -------------------------------------------------------------------------------- /packages/vue-intlayer/src/markdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './installIntlayerMarkdown'; 2 | -------------------------------------------------------------------------------- /scripts/docker-build-website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/scripts/docker-build-website.sh -------------------------------------------------------------------------------- /scripts/package-build-order.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/scripts/package-build-order.mjs -------------------------------------------------------------------------------- /scripts/script-pick.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/scripts/script-pick.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/turbo.json -------------------------------------------------------------------------------- /utils/ts-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/utils/ts-config/package.json -------------------------------------------------------------------------------- /utils/ts-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/utils/ts-config/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymericzip/intlayer/HEAD/vitest.config.ts --------------------------------------------------------------------------------