@intlayer/docs 7.5.13 → 7.5.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/blog/ar/per-component_vs_centralized_i18n.md +248 -0
  2. package/blog/de/per-component_vs_centralized_i18n.md +248 -0
  3. package/blog/en/_per-component_vs_centralized_i18n.md +252 -0
  4. package/blog/en/per-component_vs_centralized_i18n.md +248 -0
  5. package/blog/en-GB/per-component_vs_centralized_i18n.md +247 -0
  6. package/blog/es/per-component_vs_centralized_i18n.md +245 -0
  7. package/blog/fr/per-component_vs_centralized_i18n.md +245 -0
  8. package/blog/hi/per-component_vs_centralized_i18n.md +249 -0
  9. package/blog/id/per-component_vs_centralized_i18n.md +248 -0
  10. package/blog/it/per-component_vs_centralized_i18n.md +247 -0
  11. package/blog/ja/per-component_vs_centralized_i18n.md +247 -0
  12. package/blog/ko/per-component_vs_centralized_i18n.md +246 -0
  13. package/blog/pl/per-component_vs_centralized_i18n.md +247 -0
  14. package/blog/pt/per-component_vs_centralized_i18n.md +246 -0
  15. package/blog/ru/per-component_vs_centralized_i18n.md +251 -0
  16. package/blog/tr/per-component_vs_centralized_i18n.md +244 -0
  17. package/blog/uk/per-component_vs_centralized_i18n.md +248 -0
  18. package/blog/vi/per-component_vs_centralized_i18n.md +246 -0
  19. package/blog/zh/per-component_vs_centralized_i18n.md +248 -0
  20. package/dist/cjs/common.cjs.map +1 -1
  21. package/dist/cjs/generated/blog.entry.cjs +20 -0
  22. package/dist/cjs/generated/blog.entry.cjs.map +1 -1
  23. package/dist/cjs/generated/docs.entry.cjs.map +1 -1
  24. package/dist/cjs/generated/frequentQuestions.entry.cjs.map +1 -1
  25. package/dist/cjs/generated/legal.entry.cjs.map +1 -1
  26. package/dist/esm/common.mjs.map +1 -1
  27. package/dist/esm/generated/blog.entry.mjs +20 -0
  28. package/dist/esm/generated/blog.entry.mjs.map +1 -1
  29. package/dist/esm/generated/docs.entry.mjs.map +1 -1
  30. package/dist/esm/generated/frequentQuestions.entry.mjs.map +1 -1
  31. package/dist/esm/generated/legal.entry.mjs.map +1 -1
  32. package/dist/types/generated/blog.entry.d.ts +1 -0
  33. package/dist/types/generated/blog.entry.d.ts.map +1 -1
  34. package/package.json +9 -9
  35. package/src/generated/blog.entry.ts +20 -0
@@ -1 +1 @@
1
- {"version":3,"file":"frequentQuestions.entry.cjs","names":["baseDir: string"],"sources":["../../../src/generated/frequentQuestions.entry.ts"],"sourcesContent":["/* AUTO-GENERATED – DO NOT EDIT */\n/* REGENERATE USING `pnpm prepare` */\nimport { existsSync } from 'node:fs';\nimport { readFile } from 'node:fs/promises';\nimport { join, dirname as pathDirname } from 'node:path';\nimport { fileURLToPath } from 'node:url';\nimport { getPackageJsonPath, getProjectRequire } from '@intlayer/config';\nimport type { LocalesValues } from '@intlayer/types';\n\n// Robustly resolve the base directory of the @intlayer/docs package in both\n// bundled environments (Next.js) and standalone CLIs (MCP via npx).\nconst currentDir =\n typeof __dirname !== 'undefined'\n ? __dirname\n : pathDirname(fileURLToPath(import.meta.url));\n\nlet baseDir: string;\ntry {\n // Prefer resolving from the location of this file (works for CLIs).\n const projectRequire = getProjectRequire(currentDir);\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n} catch {\n try {\n // Fallback: resolve from the consumer project (works for apps/bundlers).\n const projectRequire = getProjectRequire();\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n } catch {\n // Last resort: walk up from currentDir (useful when executed inside @intlayer/docs).\n baseDir = getPackageJsonPath(currentDir).baseDir;\n }\n}\n\nconst readLocale = (\n relativeAfterLocale: string,\n locale: LocalesValues\n): Promise<string> => {\n const target1 = join(\n baseDir,\n `./frequent_questions/${locale}/${relativeAfterLocale}`\n );\n if (existsSync(target1)) {\n return readFile(target1, 'utf8');\n }\n const target2 = join(\n baseDir,\n `./frequent_questions/en/${relativeAfterLocale}`\n );\n if (existsSync(target2)) {\n return readFile(target2, 'utf8');\n }\n\n return Promise.reject(\n new Error(\n `[docs] File not found: ${relativeAfterLocale} - locale: ${locale} - path: ${target1} - path: ${target2}`\n )\n );\n};\n\nexport const frequentQuestionsEntry = {\n './frequent_questions/en/SSR_Next_no_[locale].md': {\n en: readLocale('SSR_Next_no_[locale].md', 'en'),\n ru: readLocale('SSR_Next_no_[locale].md', 'ru'),\n ja: readLocale('SSR_Next_no_[locale].md', 'ja'),\n fr: readLocale('SSR_Next_no_[locale].md', 'fr'),\n ko: readLocale('SSR_Next_no_[locale].md', 'ko'),\n zh: readLocale('SSR_Next_no_[locale].md', 'zh'),\n es: readLocale('SSR_Next_no_[locale].md', 'es'),\n de: readLocale('SSR_Next_no_[locale].md', 'de'),\n ar: readLocale('SSR_Next_no_[locale].md', 'ar'),\n it: readLocale('SSR_Next_no_[locale].md', 'it'),\n 'en-GB': readLocale('SSR_Next_no_[locale].md', 'en-GB'),\n pt: readLocale('SSR_Next_no_[locale].md', 'pt'),\n hi: readLocale('SSR_Next_no_[locale].md', 'hi'),\n tr: readLocale('SSR_Next_no_[locale].md', 'tr'),\n pl: readLocale('SSR_Next_no_[locale].md', 'pl'),\n id: readLocale('SSR_Next_no_[locale].md', 'id'),\n vi: readLocale('SSR_Next_no_[locale].md', 'vi'),\n uk: readLocale('SSR_Next_no_[locale].md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/array_as_content_declaration.md': {\n en: readLocale('array_as_content_declaration.md', 'en'),\n ru: readLocale('array_as_content_declaration.md', 'ru'),\n ja: readLocale('array_as_content_declaration.md', 'ja'),\n fr: readLocale('array_as_content_declaration.md', 'fr'),\n ko: readLocale('array_as_content_declaration.md', 'ko'),\n zh: readLocale('array_as_content_declaration.md', 'zh'),\n es: readLocale('array_as_content_declaration.md', 'es'),\n de: readLocale('array_as_content_declaration.md', 'de'),\n ar: readLocale('array_as_content_declaration.md', 'ar'),\n it: readLocale('array_as_content_declaration.md', 'it'),\n 'en-GB': readLocale('array_as_content_declaration.md', 'en-GB'),\n pt: readLocale('array_as_content_declaration.md', 'pt'),\n hi: readLocale('array_as_content_declaration.md', 'hi'),\n tr: readLocale('array_as_content_declaration.md', 'tr'),\n pl: readLocale('array_as_content_declaration.md', 'pl'),\n id: readLocale('array_as_content_declaration.md', 'id'),\n vi: readLocale('array_as_content_declaration.md', 'vi'),\n uk: readLocale('array_as_content_declaration.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/build_dictionaries.md': {\n en: readLocale('build_dictionaries.md', 'en'),\n ru: readLocale('build_dictionaries.md', 'ru'),\n ja: readLocale('build_dictionaries.md', 'ja'),\n fr: readLocale('build_dictionaries.md', 'fr'),\n ko: readLocale('build_dictionaries.md', 'ko'),\n zh: readLocale('build_dictionaries.md', 'zh'),\n es: readLocale('build_dictionaries.md', 'es'),\n de: readLocale('build_dictionaries.md', 'de'),\n ar: readLocale('build_dictionaries.md', 'ar'),\n it: readLocale('build_dictionaries.md', 'it'),\n 'en-GB': readLocale('build_dictionaries.md', 'en-GB'),\n pt: readLocale('build_dictionaries.md', 'pt'),\n hi: readLocale('build_dictionaries.md', 'hi'),\n tr: readLocale('build_dictionaries.md', 'tr'),\n pl: readLocale('build_dictionaries.md', 'pl'),\n id: readLocale('build_dictionaries.md', 'id'),\n vi: readLocale('build_dictionaries.md', 'vi'),\n uk: readLocale('build_dictionaries.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/build_error_CI_CD.md': {\n en: readLocale('build_error_CI_CD.md', 'en'),\n ru: readLocale('build_error_CI_CD.md', 'ru'),\n ja: readLocale('build_error_CI_CD.md', 'ja'),\n fr: readLocale('build_error_CI_CD.md', 'fr'),\n ko: readLocale('build_error_CI_CD.md', 'ko'),\n zh: readLocale('build_error_CI_CD.md', 'zh'),\n es: readLocale('build_error_CI_CD.md', 'es'),\n de: readLocale('build_error_CI_CD.md', 'de'),\n ar: readLocale('build_error_CI_CD.md', 'ar'),\n it: readLocale('build_error_CI_CD.md', 'it'),\n 'en-GB': readLocale('build_error_CI_CD.md', 'en-GB'),\n pt: readLocale('build_error_CI_CD.md', 'pt'),\n hi: readLocale('build_error_CI_CD.md', 'hi'),\n tr: readLocale('build_error_CI_CD.md', 'tr'),\n pl: readLocale('build_error_CI_CD.md', 'pl'),\n id: readLocale('build_error_CI_CD.md', 'id'),\n vi: readLocale('build_error_CI_CD.md', 'vi'),\n uk: readLocale('build_error_CI_CD.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/bun_set_up.md': {\n en: readLocale('bun_set_up.md', 'en'),\n ru: readLocale('bun_set_up.md', 'ru'),\n ja: readLocale('bun_set_up.md', 'ja'),\n fr: readLocale('bun_set_up.md', 'fr'),\n ko: readLocale('bun_set_up.md', 'ko'),\n zh: readLocale('bun_set_up.md', 'zh'),\n es: readLocale('bun_set_up.md', 'es'),\n de: readLocale('bun_set_up.md', 'de'),\n ar: readLocale('bun_set_up.md', 'ar'),\n it: readLocale('bun_set_up.md', 'it'),\n 'en-GB': readLocale('bun_set_up.md', 'en-GB'),\n pt: readLocale('bun_set_up.md', 'pt'),\n hi: readLocale('bun_set_up.md', 'hi'),\n tr: readLocale('bun_set_up.md', 'tr'),\n pl: readLocale('bun_set_up.md', 'pl'),\n id: readLocale('bun_set_up.md', 'id'),\n vi: readLocale('bun_set_up.md', 'vi'),\n uk: readLocale('bun_set_up.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/customized_locale_list.md': {\n en: readLocale('customized_locale_list.md', 'en'),\n ru: readLocale('customized_locale_list.md', 'ru'),\n ja: readLocale('customized_locale_list.md', 'ja'),\n fr: readLocale('customized_locale_list.md', 'fr'),\n ko: readLocale('customized_locale_list.md', 'ko'),\n zh: readLocale('customized_locale_list.md', 'zh'),\n es: readLocale('customized_locale_list.md', 'es'),\n de: readLocale('customized_locale_list.md', 'de'),\n ar: readLocale('customized_locale_list.md', 'ar'),\n it: readLocale('customized_locale_list.md', 'it'),\n 'en-GB': readLocale('customized_locale_list.md', 'en-GB'),\n pt: readLocale('customized_locale_list.md', 'pt'),\n hi: readLocale('customized_locale_list.md', 'hi'),\n tr: readLocale('customized_locale_list.md', 'tr'),\n pl: readLocale('customized_locale_list.md', 'pl'),\n id: readLocale('customized_locale_list.md', 'id'),\n vi: readLocale('customized_locale_list.md', 'vi'),\n uk: readLocale('customized_locale_list.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/domain_routing.md': {\n en: readLocale('domain_routing.md', 'en'),\n ru: readLocale('domain_routing.md', 'ru'),\n ja: readLocale('domain_routing.md', 'ja'),\n fr: readLocale('domain_routing.md', 'fr'),\n ko: readLocale('domain_routing.md', 'ko'),\n zh: readLocale('domain_routing.md', 'zh'),\n es: readLocale('domain_routing.md', 'es'),\n de: readLocale('domain_routing.md', 'de'),\n ar: readLocale('domain_routing.md', 'ar'),\n it: readLocale('domain_routing.md', 'it'),\n 'en-GB': readLocale('domain_routing.md', 'en-GB'),\n pt: readLocale('domain_routing.md', 'pt'),\n hi: readLocale('domain_routing.md', 'hi'),\n tr: readLocale('domain_routing.md', 'tr'),\n pl: readLocale('domain_routing.md', 'pl'),\n id: readLocale('domain_routing.md', 'id'),\n vi: readLocale('domain_routing.md', 'vi'),\n uk: readLocale('domain_routing.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/error-vite-env-only.md': {\n en: readLocale('error-vite-env-only.md', 'en'),\n ru: readLocale('error-vite-env-only.md', 'ru'),\n ja: readLocale('error-vite-env-only.md', 'ja'),\n fr: readLocale('error-vite-env-only.md', 'fr'),\n ko: readLocale('error-vite-env-only.md', 'ko'),\n zh: readLocale('error-vite-env-only.md', 'zh'),\n es: readLocale('error-vite-env-only.md', 'es'),\n de: readLocale('error-vite-env-only.md', 'de'),\n ar: readLocale('error-vite-env-only.md', 'ar'),\n it: readLocale('error-vite-env-only.md', 'it'),\n 'en-GB': readLocale('error-vite-env-only.md', 'en-GB'),\n pt: readLocale('error-vite-env-only.md', 'pt'),\n hi: readLocale('error-vite-env-only.md', 'hi'),\n tr: readLocale('error-vite-env-only.md', 'tr'),\n pl: readLocale('error-vite-env-only.md', 'pl'),\n id: readLocale('error-vite-env-only.md', 'id'),\n vi: readLocale('error-vite-env-only.md', 'vi'),\n uk: readLocale('error-vite-env-only.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/esbuild_error.md': {\n en: readLocale('esbuild_error.md', 'en'),\n ru: readLocale('esbuild_error.md', 'ru'),\n ja: readLocale('esbuild_error.md', 'ja'),\n fr: readLocale('esbuild_error.md', 'fr'),\n ko: readLocale('esbuild_error.md', 'ko'),\n zh: readLocale('esbuild_error.md', 'zh'),\n es: readLocale('esbuild_error.md', 'es'),\n de: readLocale('esbuild_error.md', 'de'),\n ar: readLocale('esbuild_error.md', 'ar'),\n it: readLocale('esbuild_error.md', 'it'),\n 'en-GB': readLocale('esbuild_error.md', 'en-GB'),\n pt: readLocale('esbuild_error.md', 'pt'),\n hi: readLocale('esbuild_error.md', 'hi'),\n tr: readLocale('esbuild_error.md', 'tr'),\n pl: readLocale('esbuild_error.md', 'pl'),\n id: readLocale('esbuild_error.md', 'id'),\n vi: readLocale('esbuild_error.md', 'vi'),\n uk: readLocale('esbuild_error.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/get_locale_cookie.md': {\n en: readLocale('get_locale_cookie.md', 'en'),\n ru: readLocale('get_locale_cookie.md', 'ru'),\n ja: readLocale('get_locale_cookie.md', 'ja'),\n fr: readLocale('get_locale_cookie.md', 'fr'),\n ko: readLocale('get_locale_cookie.md', 'ko'),\n zh: readLocale('get_locale_cookie.md', 'zh'),\n es: readLocale('get_locale_cookie.md', 'es'),\n de: readLocale('get_locale_cookie.md', 'de'),\n ar: readLocale('get_locale_cookie.md', 'ar'),\n it: readLocale('get_locale_cookie.md', 'it'),\n 'en-GB': readLocale('get_locale_cookie.md', 'en-GB'),\n pt: readLocale('get_locale_cookie.md', 'pt'),\n hi: readLocale('get_locale_cookie.md', 'hi'),\n tr: readLocale('get_locale_cookie.md', 'tr'),\n pl: readLocale('get_locale_cookie.md', 'pl'),\n id: readLocale('get_locale_cookie.md', 'id'),\n vi: readLocale('get_locale_cookie.md', 'vi'),\n uk: readLocale('get_locale_cookie.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/intlayer_command_undefined.md': {\n en: readLocale('intlayer_command_undefined.md', 'en'),\n ru: readLocale('intlayer_command_undefined.md', 'ru'),\n ja: readLocale('intlayer_command_undefined.md', 'ja'),\n fr: readLocale('intlayer_command_undefined.md', 'fr'),\n ko: readLocale('intlayer_command_undefined.md', 'ko'),\n zh: readLocale('intlayer_command_undefined.md', 'zh'),\n es: readLocale('intlayer_command_undefined.md', 'es'),\n de: readLocale('intlayer_command_undefined.md', 'de'),\n ar: readLocale('intlayer_command_undefined.md', 'ar'),\n it: readLocale('intlayer_command_undefined.md', 'it'),\n 'en-GB': readLocale('intlayer_command_undefined.md', 'en-GB'),\n pt: readLocale('intlayer_command_undefined.md', 'pt'),\n hi: readLocale('intlayer_command_undefined.md', 'hi'),\n tr: readLocale('intlayer_command_undefined.md', 'tr'),\n pl: readLocale('intlayer_command_undefined.md', 'pl'),\n id: readLocale('intlayer_command_undefined.md', 'id'),\n vi: readLocale('intlayer_command_undefined.md', 'vi'),\n uk: readLocale('intlayer_command_undefined.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/locale_incorect_in_url.md': {\n en: readLocale('locale_incorect_in_url.md', 'en'),\n ru: readLocale('locale_incorect_in_url.md', 'ru'),\n ja: readLocale('locale_incorect_in_url.md', 'ja'),\n fr: readLocale('locale_incorect_in_url.md', 'fr'),\n ko: readLocale('locale_incorect_in_url.md', 'ko'),\n zh: readLocale('locale_incorect_in_url.md', 'zh'),\n es: readLocale('locale_incorect_in_url.md', 'es'),\n de: readLocale('locale_incorect_in_url.md', 'de'),\n ar: readLocale('locale_incorect_in_url.md', 'ar'),\n it: readLocale('locale_incorect_in_url.md', 'it'),\n 'en-GB': readLocale('locale_incorect_in_url.md', 'en-GB'),\n pt: readLocale('locale_incorect_in_url.md', 'pt'),\n hi: readLocale('locale_incorect_in_url.md', 'hi'),\n tr: readLocale('locale_incorect_in_url.md', 'tr'),\n pl: readLocale('locale_incorect_in_url.md', 'pl'),\n id: readLocale('locale_incorect_in_url.md', 'id'),\n vi: readLocale('locale_incorect_in_url.md', 'vi'),\n uk: readLocale('locale_incorect_in_url.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/package_version_error.md': {\n en: readLocale('package_version_error.md', 'en'),\n ru: readLocale('package_version_error.md', 'ru'),\n ja: readLocale('package_version_error.md', 'ja'),\n fr: readLocale('package_version_error.md', 'fr'),\n ko: readLocale('package_version_error.md', 'ko'),\n zh: readLocale('package_version_error.md', 'zh'),\n es: readLocale('package_version_error.md', 'es'),\n de: readLocale('package_version_error.md', 'de'),\n ar: readLocale('package_version_error.md', 'ar'),\n it: readLocale('package_version_error.md', 'it'),\n 'en-GB': readLocale('package_version_error.md', 'en-GB'),\n pt: readLocale('package_version_error.md', 'pt'),\n hi: readLocale('package_version_error.md', 'hi'),\n tr: readLocale('package_version_error.md', 'tr'),\n pl: readLocale('package_version_error.md', 'pl'),\n id: readLocale('package_version_error.md', 'id'),\n vi: readLocale('package_version_error.md', 'vi'),\n uk: readLocale('package_version_error.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/static_rendering.md': {\n en: readLocale('static_rendering.md', 'en'),\n ru: readLocale('static_rendering.md', 'ru'),\n ja: readLocale('static_rendering.md', 'ja'),\n fr: readLocale('static_rendering.md', 'fr'),\n ko: readLocale('static_rendering.md', 'ko'),\n zh: readLocale('static_rendering.md', 'zh'),\n es: readLocale('static_rendering.md', 'es'),\n de: readLocale('static_rendering.md', 'de'),\n ar: readLocale('static_rendering.md', 'ar'),\n it: readLocale('static_rendering.md', 'it'),\n 'en-GB': readLocale('static_rendering.md', 'en-GB'),\n pt: readLocale('static_rendering.md', 'pt'),\n hi: readLocale('static_rendering.md', 'hi'),\n tr: readLocale('static_rendering.md', 'tr'),\n pl: readLocale('static_rendering.md', 'pl'),\n id: readLocale('static_rendering.md', 'id'),\n vi: readLocale('static_rendering.md', 'vi'),\n uk: readLocale('static_rendering.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/translated_path_url.md': {\n en: readLocale('translated_path_url.md', 'en'),\n ru: readLocale('translated_path_url.md', 'ru'),\n ja: readLocale('translated_path_url.md', 'ja'),\n fr: readLocale('translated_path_url.md', 'fr'),\n ko: readLocale('translated_path_url.md', 'ko'),\n zh: readLocale('translated_path_url.md', 'zh'),\n es: readLocale('translated_path_url.md', 'es'),\n de: readLocale('translated_path_url.md', 'de'),\n ar: readLocale('translated_path_url.md', 'ar'),\n it: readLocale('translated_path_url.md', 'it'),\n 'en-GB': readLocale('translated_path_url.md', 'en-GB'),\n pt: readLocale('translated_path_url.md', 'pt'),\n hi: readLocale('translated_path_url.md', 'hi'),\n tr: readLocale('translated_path_url.md', 'tr'),\n pl: readLocale('translated_path_url.md', 'pl'),\n id: readLocale('translated_path_url.md', 'id'),\n vi: readLocale('translated_path_url.md', 'vi'),\n uk: readLocale('translated_path_url.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/unknown_command.md': {\n en: readLocale('unknown_command.md', 'en'),\n ru: readLocale('unknown_command.md', 'ru'),\n ja: readLocale('unknown_command.md', 'ja'),\n fr: readLocale('unknown_command.md', 'fr'),\n ko: readLocale('unknown_command.md', 'ko'),\n zh: readLocale('unknown_command.md', 'zh'),\n es: readLocale('unknown_command.md', 'es'),\n de: readLocale('unknown_command.md', 'de'),\n ar: readLocale('unknown_command.md', 'ar'),\n it: readLocale('unknown_command.md', 'it'),\n 'en-GB': readLocale('unknown_command.md', 'en-GB'),\n pt: readLocale('unknown_command.md', 'pt'),\n hi: readLocale('unknown_command.md', 'hi'),\n tr: readLocale('unknown_command.md', 'tr'),\n pl: readLocale('unknown_command.md', 'pl'),\n id: readLocale('unknown_command.md', 'id'),\n vi: readLocale('unknown_command.md', 'vi'),\n uk: readLocale('unknown_command.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n} as const;\n"],"mappings":"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"}
1
+ {"version":3,"file":"frequentQuestions.entry.cjs","names":[],"sources":["../../../src/generated/frequentQuestions.entry.ts"],"sourcesContent":["/* AUTO-GENERATED – DO NOT EDIT */\n/* REGENERATE USING `pnpm prepare` */\nimport { existsSync } from 'node:fs';\nimport { readFile } from 'node:fs/promises';\nimport { join, dirname as pathDirname } from 'node:path';\nimport { fileURLToPath } from 'node:url';\nimport { getPackageJsonPath, getProjectRequire } from '@intlayer/config';\nimport type { LocalesValues } from '@intlayer/types';\n\n// Robustly resolve the base directory of the @intlayer/docs package in both\n// bundled environments (Next.js) and standalone CLIs (MCP via npx).\nconst currentDir =\n typeof __dirname !== 'undefined'\n ? __dirname\n : pathDirname(fileURLToPath(import.meta.url));\n\nlet baseDir: string;\ntry {\n // Prefer resolving from the location of this file (works for CLIs).\n const projectRequire = getProjectRequire(currentDir);\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n} catch {\n try {\n // Fallback: resolve from the consumer project (works for apps/bundlers).\n const projectRequire = getProjectRequire();\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n } catch {\n // Last resort: walk up from currentDir (useful when executed inside @intlayer/docs).\n baseDir = getPackageJsonPath(currentDir).baseDir;\n }\n}\n\nconst readLocale = (\n relativeAfterLocale: string,\n locale: LocalesValues\n): Promise<string> => {\n const target1 = join(\n baseDir,\n `./frequent_questions/${locale}/${relativeAfterLocale}`\n );\n if (existsSync(target1)) {\n return readFile(target1, 'utf8');\n }\n const target2 = join(\n baseDir,\n `./frequent_questions/en/${relativeAfterLocale}`\n );\n if (existsSync(target2)) {\n return readFile(target2, 'utf8');\n }\n\n return Promise.reject(\n new Error(\n `[docs] File not found: ${relativeAfterLocale} - locale: ${locale} - path: ${target1} - path: ${target2}`\n )\n );\n};\n\nexport const frequentQuestionsEntry = {\n './frequent_questions/en/SSR_Next_no_[locale].md': {\n en: readLocale('SSR_Next_no_[locale].md', 'en'),\n ru: readLocale('SSR_Next_no_[locale].md', 'ru'),\n ja: readLocale('SSR_Next_no_[locale].md', 'ja'),\n fr: readLocale('SSR_Next_no_[locale].md', 'fr'),\n ko: readLocale('SSR_Next_no_[locale].md', 'ko'),\n zh: readLocale('SSR_Next_no_[locale].md', 'zh'),\n es: readLocale('SSR_Next_no_[locale].md', 'es'),\n de: readLocale('SSR_Next_no_[locale].md', 'de'),\n ar: readLocale('SSR_Next_no_[locale].md', 'ar'),\n it: readLocale('SSR_Next_no_[locale].md', 'it'),\n 'en-GB': readLocale('SSR_Next_no_[locale].md', 'en-GB'),\n pt: readLocale('SSR_Next_no_[locale].md', 'pt'),\n hi: readLocale('SSR_Next_no_[locale].md', 'hi'),\n tr: readLocale('SSR_Next_no_[locale].md', 'tr'),\n pl: readLocale('SSR_Next_no_[locale].md', 'pl'),\n id: readLocale('SSR_Next_no_[locale].md', 'id'),\n vi: readLocale('SSR_Next_no_[locale].md', 'vi'),\n uk: readLocale('SSR_Next_no_[locale].md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/array_as_content_declaration.md': {\n en: readLocale('array_as_content_declaration.md', 'en'),\n ru: readLocale('array_as_content_declaration.md', 'ru'),\n ja: readLocale('array_as_content_declaration.md', 'ja'),\n fr: readLocale('array_as_content_declaration.md', 'fr'),\n ko: readLocale('array_as_content_declaration.md', 'ko'),\n zh: readLocale('array_as_content_declaration.md', 'zh'),\n es: readLocale('array_as_content_declaration.md', 'es'),\n de: readLocale('array_as_content_declaration.md', 'de'),\n ar: readLocale('array_as_content_declaration.md', 'ar'),\n it: readLocale('array_as_content_declaration.md', 'it'),\n 'en-GB': readLocale('array_as_content_declaration.md', 'en-GB'),\n pt: readLocale('array_as_content_declaration.md', 'pt'),\n hi: readLocale('array_as_content_declaration.md', 'hi'),\n tr: readLocale('array_as_content_declaration.md', 'tr'),\n pl: readLocale('array_as_content_declaration.md', 'pl'),\n id: readLocale('array_as_content_declaration.md', 'id'),\n vi: readLocale('array_as_content_declaration.md', 'vi'),\n uk: readLocale('array_as_content_declaration.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/build_dictionaries.md': {\n en: readLocale('build_dictionaries.md', 'en'),\n ru: readLocale('build_dictionaries.md', 'ru'),\n ja: readLocale('build_dictionaries.md', 'ja'),\n fr: readLocale('build_dictionaries.md', 'fr'),\n ko: readLocale('build_dictionaries.md', 'ko'),\n zh: readLocale('build_dictionaries.md', 'zh'),\n es: readLocale('build_dictionaries.md', 'es'),\n de: readLocale('build_dictionaries.md', 'de'),\n ar: readLocale('build_dictionaries.md', 'ar'),\n it: readLocale('build_dictionaries.md', 'it'),\n 'en-GB': readLocale('build_dictionaries.md', 'en-GB'),\n pt: readLocale('build_dictionaries.md', 'pt'),\n hi: readLocale('build_dictionaries.md', 'hi'),\n tr: readLocale('build_dictionaries.md', 'tr'),\n pl: readLocale('build_dictionaries.md', 'pl'),\n id: readLocale('build_dictionaries.md', 'id'),\n vi: readLocale('build_dictionaries.md', 'vi'),\n uk: readLocale('build_dictionaries.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/build_error_CI_CD.md': {\n en: readLocale('build_error_CI_CD.md', 'en'),\n ru: readLocale('build_error_CI_CD.md', 'ru'),\n ja: readLocale('build_error_CI_CD.md', 'ja'),\n fr: readLocale('build_error_CI_CD.md', 'fr'),\n ko: readLocale('build_error_CI_CD.md', 'ko'),\n zh: readLocale('build_error_CI_CD.md', 'zh'),\n es: readLocale('build_error_CI_CD.md', 'es'),\n de: readLocale('build_error_CI_CD.md', 'de'),\n ar: readLocale('build_error_CI_CD.md', 'ar'),\n it: readLocale('build_error_CI_CD.md', 'it'),\n 'en-GB': readLocale('build_error_CI_CD.md', 'en-GB'),\n pt: readLocale('build_error_CI_CD.md', 'pt'),\n hi: readLocale('build_error_CI_CD.md', 'hi'),\n tr: readLocale('build_error_CI_CD.md', 'tr'),\n pl: readLocale('build_error_CI_CD.md', 'pl'),\n id: readLocale('build_error_CI_CD.md', 'id'),\n vi: readLocale('build_error_CI_CD.md', 'vi'),\n uk: readLocale('build_error_CI_CD.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/bun_set_up.md': {\n en: readLocale('bun_set_up.md', 'en'),\n ru: readLocale('bun_set_up.md', 'ru'),\n ja: readLocale('bun_set_up.md', 'ja'),\n fr: readLocale('bun_set_up.md', 'fr'),\n ko: readLocale('bun_set_up.md', 'ko'),\n zh: readLocale('bun_set_up.md', 'zh'),\n es: readLocale('bun_set_up.md', 'es'),\n de: readLocale('bun_set_up.md', 'de'),\n ar: readLocale('bun_set_up.md', 'ar'),\n it: readLocale('bun_set_up.md', 'it'),\n 'en-GB': readLocale('bun_set_up.md', 'en-GB'),\n pt: readLocale('bun_set_up.md', 'pt'),\n hi: readLocale('bun_set_up.md', 'hi'),\n tr: readLocale('bun_set_up.md', 'tr'),\n pl: readLocale('bun_set_up.md', 'pl'),\n id: readLocale('bun_set_up.md', 'id'),\n vi: readLocale('bun_set_up.md', 'vi'),\n uk: readLocale('bun_set_up.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/customized_locale_list.md': {\n en: readLocale('customized_locale_list.md', 'en'),\n ru: readLocale('customized_locale_list.md', 'ru'),\n ja: readLocale('customized_locale_list.md', 'ja'),\n fr: readLocale('customized_locale_list.md', 'fr'),\n ko: readLocale('customized_locale_list.md', 'ko'),\n zh: readLocale('customized_locale_list.md', 'zh'),\n es: readLocale('customized_locale_list.md', 'es'),\n de: readLocale('customized_locale_list.md', 'de'),\n ar: readLocale('customized_locale_list.md', 'ar'),\n it: readLocale('customized_locale_list.md', 'it'),\n 'en-GB': readLocale('customized_locale_list.md', 'en-GB'),\n pt: readLocale('customized_locale_list.md', 'pt'),\n hi: readLocale('customized_locale_list.md', 'hi'),\n tr: readLocale('customized_locale_list.md', 'tr'),\n pl: readLocale('customized_locale_list.md', 'pl'),\n id: readLocale('customized_locale_list.md', 'id'),\n vi: readLocale('customized_locale_list.md', 'vi'),\n uk: readLocale('customized_locale_list.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/domain_routing.md': {\n en: readLocale('domain_routing.md', 'en'),\n ru: readLocale('domain_routing.md', 'ru'),\n ja: readLocale('domain_routing.md', 'ja'),\n fr: readLocale('domain_routing.md', 'fr'),\n ko: readLocale('domain_routing.md', 'ko'),\n zh: readLocale('domain_routing.md', 'zh'),\n es: readLocale('domain_routing.md', 'es'),\n de: readLocale('domain_routing.md', 'de'),\n ar: readLocale('domain_routing.md', 'ar'),\n it: readLocale('domain_routing.md', 'it'),\n 'en-GB': readLocale('domain_routing.md', 'en-GB'),\n pt: readLocale('domain_routing.md', 'pt'),\n hi: readLocale('domain_routing.md', 'hi'),\n tr: readLocale('domain_routing.md', 'tr'),\n pl: readLocale('domain_routing.md', 'pl'),\n id: readLocale('domain_routing.md', 'id'),\n vi: readLocale('domain_routing.md', 'vi'),\n uk: readLocale('domain_routing.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/error-vite-env-only.md': {\n en: readLocale('error-vite-env-only.md', 'en'),\n ru: readLocale('error-vite-env-only.md', 'ru'),\n ja: readLocale('error-vite-env-only.md', 'ja'),\n fr: readLocale('error-vite-env-only.md', 'fr'),\n ko: readLocale('error-vite-env-only.md', 'ko'),\n zh: readLocale('error-vite-env-only.md', 'zh'),\n es: readLocale('error-vite-env-only.md', 'es'),\n de: readLocale('error-vite-env-only.md', 'de'),\n ar: readLocale('error-vite-env-only.md', 'ar'),\n it: readLocale('error-vite-env-only.md', 'it'),\n 'en-GB': readLocale('error-vite-env-only.md', 'en-GB'),\n pt: readLocale('error-vite-env-only.md', 'pt'),\n hi: readLocale('error-vite-env-only.md', 'hi'),\n tr: readLocale('error-vite-env-only.md', 'tr'),\n pl: readLocale('error-vite-env-only.md', 'pl'),\n id: readLocale('error-vite-env-only.md', 'id'),\n vi: readLocale('error-vite-env-only.md', 'vi'),\n uk: readLocale('error-vite-env-only.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/esbuild_error.md': {\n en: readLocale('esbuild_error.md', 'en'),\n ru: readLocale('esbuild_error.md', 'ru'),\n ja: readLocale('esbuild_error.md', 'ja'),\n fr: readLocale('esbuild_error.md', 'fr'),\n ko: readLocale('esbuild_error.md', 'ko'),\n zh: readLocale('esbuild_error.md', 'zh'),\n es: readLocale('esbuild_error.md', 'es'),\n de: readLocale('esbuild_error.md', 'de'),\n ar: readLocale('esbuild_error.md', 'ar'),\n it: readLocale('esbuild_error.md', 'it'),\n 'en-GB': readLocale('esbuild_error.md', 'en-GB'),\n pt: readLocale('esbuild_error.md', 'pt'),\n hi: readLocale('esbuild_error.md', 'hi'),\n tr: readLocale('esbuild_error.md', 'tr'),\n pl: readLocale('esbuild_error.md', 'pl'),\n id: readLocale('esbuild_error.md', 'id'),\n vi: readLocale('esbuild_error.md', 'vi'),\n uk: readLocale('esbuild_error.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/get_locale_cookie.md': {\n en: readLocale('get_locale_cookie.md', 'en'),\n ru: readLocale('get_locale_cookie.md', 'ru'),\n ja: readLocale('get_locale_cookie.md', 'ja'),\n fr: readLocale('get_locale_cookie.md', 'fr'),\n ko: readLocale('get_locale_cookie.md', 'ko'),\n zh: readLocale('get_locale_cookie.md', 'zh'),\n es: readLocale('get_locale_cookie.md', 'es'),\n de: readLocale('get_locale_cookie.md', 'de'),\n ar: readLocale('get_locale_cookie.md', 'ar'),\n it: readLocale('get_locale_cookie.md', 'it'),\n 'en-GB': readLocale('get_locale_cookie.md', 'en-GB'),\n pt: readLocale('get_locale_cookie.md', 'pt'),\n hi: readLocale('get_locale_cookie.md', 'hi'),\n tr: readLocale('get_locale_cookie.md', 'tr'),\n pl: readLocale('get_locale_cookie.md', 'pl'),\n id: readLocale('get_locale_cookie.md', 'id'),\n vi: readLocale('get_locale_cookie.md', 'vi'),\n uk: readLocale('get_locale_cookie.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/intlayer_command_undefined.md': {\n en: readLocale('intlayer_command_undefined.md', 'en'),\n ru: readLocale('intlayer_command_undefined.md', 'ru'),\n ja: readLocale('intlayer_command_undefined.md', 'ja'),\n fr: readLocale('intlayer_command_undefined.md', 'fr'),\n ko: readLocale('intlayer_command_undefined.md', 'ko'),\n zh: readLocale('intlayer_command_undefined.md', 'zh'),\n es: readLocale('intlayer_command_undefined.md', 'es'),\n de: readLocale('intlayer_command_undefined.md', 'de'),\n ar: readLocale('intlayer_command_undefined.md', 'ar'),\n it: readLocale('intlayer_command_undefined.md', 'it'),\n 'en-GB': readLocale('intlayer_command_undefined.md', 'en-GB'),\n pt: readLocale('intlayer_command_undefined.md', 'pt'),\n hi: readLocale('intlayer_command_undefined.md', 'hi'),\n tr: readLocale('intlayer_command_undefined.md', 'tr'),\n pl: readLocale('intlayer_command_undefined.md', 'pl'),\n id: readLocale('intlayer_command_undefined.md', 'id'),\n vi: readLocale('intlayer_command_undefined.md', 'vi'),\n uk: readLocale('intlayer_command_undefined.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/locale_incorect_in_url.md': {\n en: readLocale('locale_incorect_in_url.md', 'en'),\n ru: readLocale('locale_incorect_in_url.md', 'ru'),\n ja: readLocale('locale_incorect_in_url.md', 'ja'),\n fr: readLocale('locale_incorect_in_url.md', 'fr'),\n ko: readLocale('locale_incorect_in_url.md', 'ko'),\n zh: readLocale('locale_incorect_in_url.md', 'zh'),\n es: readLocale('locale_incorect_in_url.md', 'es'),\n de: readLocale('locale_incorect_in_url.md', 'de'),\n ar: readLocale('locale_incorect_in_url.md', 'ar'),\n it: readLocale('locale_incorect_in_url.md', 'it'),\n 'en-GB': readLocale('locale_incorect_in_url.md', 'en-GB'),\n pt: readLocale('locale_incorect_in_url.md', 'pt'),\n hi: readLocale('locale_incorect_in_url.md', 'hi'),\n tr: readLocale('locale_incorect_in_url.md', 'tr'),\n pl: readLocale('locale_incorect_in_url.md', 'pl'),\n id: readLocale('locale_incorect_in_url.md', 'id'),\n vi: readLocale('locale_incorect_in_url.md', 'vi'),\n uk: readLocale('locale_incorect_in_url.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/package_version_error.md': {\n en: readLocale('package_version_error.md', 'en'),\n ru: readLocale('package_version_error.md', 'ru'),\n ja: readLocale('package_version_error.md', 'ja'),\n fr: readLocale('package_version_error.md', 'fr'),\n ko: readLocale('package_version_error.md', 'ko'),\n zh: readLocale('package_version_error.md', 'zh'),\n es: readLocale('package_version_error.md', 'es'),\n de: readLocale('package_version_error.md', 'de'),\n ar: readLocale('package_version_error.md', 'ar'),\n it: readLocale('package_version_error.md', 'it'),\n 'en-GB': readLocale('package_version_error.md', 'en-GB'),\n pt: readLocale('package_version_error.md', 'pt'),\n hi: readLocale('package_version_error.md', 'hi'),\n tr: readLocale('package_version_error.md', 'tr'),\n pl: readLocale('package_version_error.md', 'pl'),\n id: readLocale('package_version_error.md', 'id'),\n vi: readLocale('package_version_error.md', 'vi'),\n uk: readLocale('package_version_error.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/static_rendering.md': {\n en: readLocale('static_rendering.md', 'en'),\n ru: readLocale('static_rendering.md', 'ru'),\n ja: readLocale('static_rendering.md', 'ja'),\n fr: readLocale('static_rendering.md', 'fr'),\n ko: readLocale('static_rendering.md', 'ko'),\n zh: readLocale('static_rendering.md', 'zh'),\n es: readLocale('static_rendering.md', 'es'),\n de: readLocale('static_rendering.md', 'de'),\n ar: readLocale('static_rendering.md', 'ar'),\n it: readLocale('static_rendering.md', 'it'),\n 'en-GB': readLocale('static_rendering.md', 'en-GB'),\n pt: readLocale('static_rendering.md', 'pt'),\n hi: readLocale('static_rendering.md', 'hi'),\n tr: readLocale('static_rendering.md', 'tr'),\n pl: readLocale('static_rendering.md', 'pl'),\n id: readLocale('static_rendering.md', 'id'),\n vi: readLocale('static_rendering.md', 'vi'),\n uk: readLocale('static_rendering.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/translated_path_url.md': {\n en: readLocale('translated_path_url.md', 'en'),\n ru: readLocale('translated_path_url.md', 'ru'),\n ja: readLocale('translated_path_url.md', 'ja'),\n fr: readLocale('translated_path_url.md', 'fr'),\n ko: readLocale('translated_path_url.md', 'ko'),\n zh: readLocale('translated_path_url.md', 'zh'),\n es: readLocale('translated_path_url.md', 'es'),\n de: readLocale('translated_path_url.md', 'de'),\n ar: readLocale('translated_path_url.md', 'ar'),\n it: readLocale('translated_path_url.md', 'it'),\n 'en-GB': readLocale('translated_path_url.md', 'en-GB'),\n pt: readLocale('translated_path_url.md', 'pt'),\n hi: readLocale('translated_path_url.md', 'hi'),\n tr: readLocale('translated_path_url.md', 'tr'),\n pl: readLocale('translated_path_url.md', 'pl'),\n id: readLocale('translated_path_url.md', 'id'),\n vi: readLocale('translated_path_url.md', 'vi'),\n uk: readLocale('translated_path_url.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './frequent_questions/en/unknown_command.md': {\n en: readLocale('unknown_command.md', 'en'),\n ru: readLocale('unknown_command.md', 'ru'),\n ja: readLocale('unknown_command.md', 'ja'),\n fr: readLocale('unknown_command.md', 'fr'),\n ko: readLocale('unknown_command.md', 'ko'),\n zh: readLocale('unknown_command.md', 'zh'),\n es: readLocale('unknown_command.md', 'es'),\n de: readLocale('unknown_command.md', 'de'),\n ar: readLocale('unknown_command.md', 'ar'),\n it: readLocale('unknown_command.md', 'it'),\n 'en-GB': readLocale('unknown_command.md', 'en-GB'),\n pt: readLocale('unknown_command.md', 'pt'),\n hi: readLocale('unknown_command.md', 'hi'),\n tr: readLocale('unknown_command.md', 'tr'),\n pl: readLocale('unknown_command.md', 'pl'),\n id: readLocale('unknown_command.md', 'id'),\n vi: readLocale('unknown_command.md', 'vi'),\n uk: readLocale('unknown_command.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n} as const;\n"],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"legal.entry.cjs","names":["baseDir: string"],"sources":["../../../src/generated/legal.entry.ts"],"sourcesContent":["/* AUTO-GENERATED – DO NOT EDIT */\n/* REGENERATE USING `pnpm prepare` */\nimport { existsSync } from 'node:fs';\nimport { readFile } from 'node:fs/promises';\nimport { join, dirname as pathDirname } from 'node:path';\nimport { fileURLToPath } from 'node:url';\nimport { getPackageJsonPath, getProjectRequire } from '@intlayer/config';\nimport type { LocalesValues } from '@intlayer/types';\n\n// Robustly resolve the base directory of the @intlayer/docs package in both\n// bundled environments (Next.js) and standalone CLIs (MCP via npx).\nconst currentDir =\n typeof __dirname !== 'undefined'\n ? __dirname\n : pathDirname(fileURLToPath(import.meta.url));\n\nlet baseDir: string;\ntry {\n // Prefer resolving from the location of this file (works for CLIs).\n const projectRequire = getProjectRequire(currentDir);\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n} catch {\n try {\n // Fallback: resolve from the consumer project (works for apps/bundlers).\n const projectRequire = getProjectRequire();\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n } catch {\n // Last resort: walk up from currentDir (useful when executed inside @intlayer/docs).\n baseDir = getPackageJsonPath(currentDir).baseDir;\n }\n}\n\nconst readLocale = (\n relativeAfterLocale: string,\n locale: LocalesValues\n): Promise<string> => {\n const target1 = join(baseDir, `./legal/${locale}/${relativeAfterLocale}`);\n if (existsSync(target1)) {\n return readFile(target1, 'utf8');\n }\n const target2 = join(baseDir, `./legal/en/${relativeAfterLocale}`);\n if (existsSync(target2)) {\n return readFile(target2, 'utf8');\n }\n\n return Promise.reject(\n new Error(\n `[docs] File not found: ${relativeAfterLocale} - locale: ${locale} - path: ${target1} - path: ${target2}`\n )\n );\n};\n\nexport const legalEntry = {\n './legal/en/privacy_notice.md': {\n en: readLocale('privacy_notice.md', 'en'),\n ru: readLocale('privacy_notice.md', 'ru'),\n ja: readLocale('privacy_notice.md', 'ja'),\n fr: readLocale('privacy_notice.md', 'fr'),\n ko: readLocale('privacy_notice.md', 'ko'),\n zh: readLocale('privacy_notice.md', 'zh'),\n es: readLocale('privacy_notice.md', 'es'),\n de: readLocale('privacy_notice.md', 'de'),\n ar: readLocale('privacy_notice.md', 'ar'),\n it: readLocale('privacy_notice.md', 'it'),\n 'en-GB': readLocale('privacy_notice.md', 'en-GB'),\n pt: readLocale('privacy_notice.md', 'pt'),\n hi: readLocale('privacy_notice.md', 'hi'),\n tr: readLocale('privacy_notice.md', 'tr'),\n pl: readLocale('privacy_notice.md', 'pl'),\n id: readLocale('privacy_notice.md', 'id'),\n vi: readLocale('privacy_notice.md', 'vi'),\n uk: readLocale('privacy_notice.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './legal/en/terms_of_service.md': {\n en: readLocale('terms_of_service.md', 'en'),\n ru: readLocale('terms_of_service.md', 'ru'),\n ja: readLocale('terms_of_service.md', 'ja'),\n fr: readLocale('terms_of_service.md', 'fr'),\n ko: readLocale('terms_of_service.md', 'ko'),\n zh: readLocale('terms_of_service.md', 'zh'),\n es: readLocale('terms_of_service.md', 'es'),\n de: readLocale('terms_of_service.md', 'de'),\n ar: readLocale('terms_of_service.md', 'ar'),\n it: readLocale('terms_of_service.md', 'it'),\n 'en-GB': readLocale('terms_of_service.md', 'en-GB'),\n pt: readLocale('terms_of_service.md', 'pt'),\n hi: readLocale('terms_of_service.md', 'hi'),\n tr: readLocale('terms_of_service.md', 'tr'),\n pl: readLocale('terms_of_service.md', 'pl'),\n id: readLocale('terms_of_service.md', 'id'),\n vi: readLocale('terms_of_service.md', 'vi'),\n uk: readLocale('terms_of_service.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n} as const;\n"],"mappings":";;;;;;;AAWA,MAAM,aACJ,OAAO,cAAc,cACjB,6GAC0C,CAAC;AAEjD,IAAIA;AACJ,IAAI;AAIF,4FAFyC,WAAW,CAChB,QAAQ,iBAAiB,CACnB,CAAC;QACrC;AACN,KAAI;AAIF,8FAF0C,CACN,QAAQ,iBAAiB,CACnB,CAAC;SACrC;AAEN,qDAA6B,WAAW,CAAC;;;AAI7C,MAAM,cACJ,qBACA,WACoB;CACpB,MAAM,8BAAe,SAAS,WAAW,OAAO,GAAG,sBAAsB;AACzE,6BAAe,QAAQ,CACrB,uCAAgB,SAAS,OAAO;CAElC,MAAM,8BAAe,SAAS,cAAc,sBAAsB;AAClE,6BAAe,QAAQ,CACrB,uCAAgB,SAAS,OAAO;AAGlC,QAAO,QAAQ,uBACb,IAAI,MACF,0BAA0B,oBAAoB,aAAa,OAAO,WAAW,QAAQ,WAAW,UACjG,CACF;;AAGH,MAAa,aAAa;CACxB,gCAAgC;EAC9B,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,SAAS,WAAW,qBAAqB,QAAQ;EACjD,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EAC1C;CACD,kCAAkC;EAChC,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,SAAS,WAAW,uBAAuB,QAAQ;EACnD,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC5C;CACF"}
1
+ {"version":3,"file":"legal.entry.cjs","names":[],"sources":["../../../src/generated/legal.entry.ts"],"sourcesContent":["/* AUTO-GENERATED – DO NOT EDIT */\n/* REGENERATE USING `pnpm prepare` */\nimport { existsSync } from 'node:fs';\nimport { readFile } from 'node:fs/promises';\nimport { join, dirname as pathDirname } from 'node:path';\nimport { fileURLToPath } from 'node:url';\nimport { getPackageJsonPath, getProjectRequire } from '@intlayer/config';\nimport type { LocalesValues } from '@intlayer/types';\n\n// Robustly resolve the base directory of the @intlayer/docs package in both\n// bundled environments (Next.js) and standalone CLIs (MCP via npx).\nconst currentDir =\n typeof __dirname !== 'undefined'\n ? __dirname\n : pathDirname(fileURLToPath(import.meta.url));\n\nlet baseDir: string;\ntry {\n // Prefer resolving from the location of this file (works for CLIs).\n const projectRequire = getProjectRequire(currentDir);\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n} catch {\n try {\n // Fallback: resolve from the consumer project (works for apps/bundlers).\n const projectRequire = getProjectRequire();\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n } catch {\n // Last resort: walk up from currentDir (useful when executed inside @intlayer/docs).\n baseDir = getPackageJsonPath(currentDir).baseDir;\n }\n}\n\nconst readLocale = (\n relativeAfterLocale: string,\n locale: LocalesValues\n): Promise<string> => {\n const target1 = join(baseDir, `./legal/${locale}/${relativeAfterLocale}`);\n if (existsSync(target1)) {\n return readFile(target1, 'utf8');\n }\n const target2 = join(baseDir, `./legal/en/${relativeAfterLocale}`);\n if (existsSync(target2)) {\n return readFile(target2, 'utf8');\n }\n\n return Promise.reject(\n new Error(\n `[docs] File not found: ${relativeAfterLocale} - locale: ${locale} - path: ${target1} - path: ${target2}`\n )\n );\n};\n\nexport const legalEntry = {\n './legal/en/privacy_notice.md': {\n en: readLocale('privacy_notice.md', 'en'),\n ru: readLocale('privacy_notice.md', 'ru'),\n ja: readLocale('privacy_notice.md', 'ja'),\n fr: readLocale('privacy_notice.md', 'fr'),\n ko: readLocale('privacy_notice.md', 'ko'),\n zh: readLocale('privacy_notice.md', 'zh'),\n es: readLocale('privacy_notice.md', 'es'),\n de: readLocale('privacy_notice.md', 'de'),\n ar: readLocale('privacy_notice.md', 'ar'),\n it: readLocale('privacy_notice.md', 'it'),\n 'en-GB': readLocale('privacy_notice.md', 'en-GB'),\n pt: readLocale('privacy_notice.md', 'pt'),\n hi: readLocale('privacy_notice.md', 'hi'),\n tr: readLocale('privacy_notice.md', 'tr'),\n pl: readLocale('privacy_notice.md', 'pl'),\n id: readLocale('privacy_notice.md', 'id'),\n vi: readLocale('privacy_notice.md', 'vi'),\n uk: readLocale('privacy_notice.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './legal/en/terms_of_service.md': {\n en: readLocale('terms_of_service.md', 'en'),\n ru: readLocale('terms_of_service.md', 'ru'),\n ja: readLocale('terms_of_service.md', 'ja'),\n fr: readLocale('terms_of_service.md', 'fr'),\n ko: readLocale('terms_of_service.md', 'ko'),\n zh: readLocale('terms_of_service.md', 'zh'),\n es: readLocale('terms_of_service.md', 'es'),\n de: readLocale('terms_of_service.md', 'de'),\n ar: readLocale('terms_of_service.md', 'ar'),\n it: readLocale('terms_of_service.md', 'it'),\n 'en-GB': readLocale('terms_of_service.md', 'en-GB'),\n pt: readLocale('terms_of_service.md', 'pt'),\n hi: readLocale('terms_of_service.md', 'hi'),\n tr: readLocale('terms_of_service.md', 'tr'),\n pl: readLocale('terms_of_service.md', 'pl'),\n id: readLocale('terms_of_service.md', 'id'),\n vi: readLocale('terms_of_service.md', 'vi'),\n uk: readLocale('terms_of_service.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n} as const;\n"],"mappings":";;;;;;;AAWA,MAAM,aACJ,OAAO,cAAc,cACjB,6GAC0C,CAAC;AAEjD,IAAI;AACJ,IAAI;AAIF,4FAFyC,WAAW,CAChB,QAAQ,iBAAiB,CACnB,CAAC;QACrC;AACN,KAAI;AAIF,8FAF0C,CACN,QAAQ,iBAAiB,CACnB,CAAC;SACrC;AAEN,qDAA6B,WAAW,CAAC;;;AAI7C,MAAM,cACJ,qBACA,WACoB;CACpB,MAAM,8BAAe,SAAS,WAAW,OAAO,GAAG,sBAAsB;AACzE,6BAAe,QAAQ,CACrB,uCAAgB,SAAS,OAAO;CAElC,MAAM,8BAAe,SAAS,cAAc,sBAAsB;AAClE,6BAAe,QAAQ,CACrB,uCAAgB,SAAS,OAAO;AAGlC,QAAO,QAAQ,uBACb,IAAI,MACF,0BAA0B,oBAAoB,aAAa,OAAO,WAAW,QAAQ,WAAW,UACjG,CACF;;AAGH,MAAa,aAAa;CACxB,gCAAgC;EAC9B,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,SAAS,WAAW,qBAAqB,QAAQ;EACjD,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EACzC,IAAI,WAAW,qBAAqB,KAAK;EAC1C;CACD,kCAAkC;EAChC,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,SAAS,WAAW,uBAAuB,QAAQ;EACnD,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC3C,IAAI,WAAW,uBAAuB,KAAK;EAC5C;CACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"common.mjs","names":["fileMetadataArray: FileMetadata[]"],"sources":["../../src/common.ts"],"sourcesContent":["import { join } from 'node:path';\nimport { getLocalizedUrl, getMarkdownMetadata } from '@intlayer/core';\nimport { Locales, type LocalesValues } from '@intlayer/types';\n\nexport const defaultLocale = Locales.ENGLISH;\n\nexport const GITHUB_URL_PREFIX =\n 'https://github.com/aymericzip/intlayer/blob/main/docs';\nexport const URL_PREFIX = 'https://intlayer.org/';\n\nexport const getKeys = <T extends Record<string, any>>(obj: T): (keyof T)[] =>\n Object.keys(obj) as (keyof T)[];\n\nexport const getFiles = async <\n F extends Record<`./${string}`, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n lang: LocalesValues = defaultLocale as LocalesValues\n): Promise<Record<string, string>> => {\n const filesEntries = await Promise.all(\n Object.entries(files)\n .map(([key, value]) => [key, value[lang as LocalesValues]])\n .map(async ([key, value]) => [key, await value])\n );\n const filesResult = Object.fromEntries(filesEntries);\n return filesResult;\n};\n\nexport const getFile = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n docKey: keyof F,\n locale: LocalesValues = defaultLocale as LocalesValues\n): Promise<string> => {\n const fileRecord = files[docKey];\n\n if (!fileRecord) {\n throw new Error(`File ${docKey as string} not found`);\n }\n\n const file = await files[docKey]?.[locale];\n\n if (!file) {\n const englishFile = await files[docKey][defaultLocale as LocalesValues];\n\n if (!englishFile) {\n throw new Error(`File ${docKey as string} not found`);\n }\n\n return englishFile;\n }\n\n return file;\n};\n\nexport type FileMetadata = {\n docKey: string;\n url: string;\n relativeUrl: string;\n githubUrl: string;\n title: string;\n slugs: string[];\n description: string;\n keywords: string[];\n updatedAt: string;\n createdAt: string;\n author?: string;\n youtubeVideo?: string;\n applicationTemplate?: string;\n history?: {\n version: string;\n date: string;\n changes: string;\n }[];\n};\n\nexport const formatMetadata = (\n docKey: string,\n file: string,\n locale: LocalesValues = defaultLocale as LocalesValues\n): FileMetadata => {\n const metadata = getMarkdownMetadata(file);\n\n const slugs = (metadata.slugs ?? []).map(String);\n const keywords = (metadata.keywords ?? []).map(String);\n\n const relativeUrl = join('/', ...slugs);\n\n const slicedDocKey = docKey.slice(1);\n\n return {\n ...metadata,\n docKey,\n slugs,\n keywords,\n githubUrl: `${GITHUB_URL_PREFIX}${slicedDocKey}`.replace(\n '/en/',\n `/${locale}/`\n ),\n relativeUrl: getLocalizedUrl(relativeUrl, locale),\n url: getLocalizedUrl(join(URL_PREFIX, relativeUrl), locale),\n } as FileMetadata;\n};\n\nexport const getFileMetadata = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n R extends FileMetadata,\n>(\n files: F,\n docKey: keyof F,\n locale: LocalesValues = defaultLocale as LocalesValues\n): Promise<R> => {\n const file = await getFile(files, docKey, locale);\n\n return formatMetadata(docKey as string, file, locale) as R;\n};\n\nexport const getFileMetadataRecord = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n locale: LocalesValues = defaultLocale as LocalesValues\n): Promise<Record<keyof F, FileMetadata>> => {\n const filesEntries = await Promise.all(\n Object.entries(files).map(async ([key]) => [\n key,\n await getFileMetadata(files, key as keyof F, locale),\n ])\n );\n const filesResult = Object.fromEntries(filesEntries);\n return filesResult;\n};\n\nexport const getFileMetadataBySlug = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n slugs: string | string[],\n locale: LocalesValues = defaultLocale as LocalesValues,\n strict = false\n) => {\n const slugsArray = Array.isArray(slugs) ? slugs : [slugs];\n const filesMetadata = await getFileMetadataRecord(\n files,\n defaultLocale as LocalesValues\n );\n\n let fileMetadataArray: FileMetadata[] = Object.values(filesMetadata).filter(\n (fileMetadata) =>\n slugsArray.every((slug) => fileMetadata.slugs?.includes(slug))\n );\n\n if (strict) {\n fileMetadataArray = fileMetadataArray.filter(\n (fileMetadata) => fileMetadata.slugs.length === slugsArray.length\n );\n }\n\n if (locale !== defaultLocale) {\n const localizedFileMetadata = await Promise.all(\n fileMetadataArray.map(\n async (fileMetadata) =>\n await getFileMetadata(files, fileMetadata.docKey, locale)\n )\n );\n\n return localizedFileMetadata;\n }\n\n return fileMetadataArray;\n};\n\nexport const getFileBySlug = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n slugs: string | string[],\n locale: LocalesValues = defaultLocale as LocalesValues,\n strict = false\n) => {\n const slugsArray = Array.isArray(slugs) ? slugs : [slugs];\n const filesMetadata = await getFileMetadataRecord(\n files,\n defaultLocale as LocalesValues\n );\n\n let fileMetadataArray = Object.values(filesMetadata).filter((fileMetadata) =>\n slugsArray.every((slug) => fileMetadata.slugs?.includes(slug))\n );\n\n if (strict) {\n fileMetadataArray = fileMetadataArray.filter(\n (fileMetadata) => fileMetadata.slugs.length === slugsArray.length\n );\n }\n\n const fileList = await Promise.all(\n fileMetadataArray.map(async (fileMetadata) => {\n const file = await getFile(files, fileMetadata.docKey, locale);\n return file;\n })\n );\n\n return fileList;\n};\n"],"mappings":"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"}
1
+ {"version":3,"file":"common.mjs","names":[],"sources":["../../src/common.ts"],"sourcesContent":["import { join } from 'node:path';\nimport { getLocalizedUrl, getMarkdownMetadata } from '@intlayer/core';\nimport { Locales, type LocalesValues } from '@intlayer/types';\n\nexport const defaultLocale = Locales.ENGLISH;\n\nexport const GITHUB_URL_PREFIX =\n 'https://github.com/aymericzip/intlayer/blob/main/docs';\nexport const URL_PREFIX = 'https://intlayer.org/';\n\nexport const getKeys = <T extends Record<string, any>>(obj: T): (keyof T)[] =>\n Object.keys(obj) as (keyof T)[];\n\nexport const getFiles = async <\n F extends Record<`./${string}`, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n lang: LocalesValues = defaultLocale as LocalesValues\n): Promise<Record<string, string>> => {\n const filesEntries = await Promise.all(\n Object.entries(files)\n .map(([key, value]) => [key, value[lang as LocalesValues]])\n .map(async ([key, value]) => [key, await value])\n );\n const filesResult = Object.fromEntries(filesEntries);\n return filesResult;\n};\n\nexport const getFile = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n docKey: keyof F,\n locale: LocalesValues = defaultLocale as LocalesValues\n): Promise<string> => {\n const fileRecord = files[docKey];\n\n if (!fileRecord) {\n throw new Error(`File ${docKey as string} not found`);\n }\n\n const file = await files[docKey]?.[locale];\n\n if (!file) {\n const englishFile = await files[docKey][defaultLocale as LocalesValues];\n\n if (!englishFile) {\n throw new Error(`File ${docKey as string} not found`);\n }\n\n return englishFile;\n }\n\n return file;\n};\n\nexport type FileMetadata = {\n docKey: string;\n url: string;\n relativeUrl: string;\n githubUrl: string;\n title: string;\n slugs: string[];\n description: string;\n keywords: string[];\n updatedAt: string;\n createdAt: string;\n author?: string;\n youtubeVideo?: string;\n applicationTemplate?: string;\n history?: {\n version: string;\n date: string;\n changes: string;\n }[];\n};\n\nexport const formatMetadata = (\n docKey: string,\n file: string,\n locale: LocalesValues = defaultLocale as LocalesValues\n): FileMetadata => {\n const metadata = getMarkdownMetadata(file);\n\n const slugs = (metadata.slugs ?? []).map(String);\n const keywords = (metadata.keywords ?? []).map(String);\n\n const relativeUrl = join('/', ...slugs);\n\n const slicedDocKey = docKey.slice(1);\n\n return {\n ...metadata,\n docKey,\n slugs,\n keywords,\n githubUrl: `${GITHUB_URL_PREFIX}${slicedDocKey}`.replace(\n '/en/',\n `/${locale}/`\n ),\n relativeUrl: getLocalizedUrl(relativeUrl, locale),\n url: getLocalizedUrl(join(URL_PREFIX, relativeUrl), locale),\n } as FileMetadata;\n};\n\nexport const getFileMetadata = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n R extends FileMetadata,\n>(\n files: F,\n docKey: keyof F,\n locale: LocalesValues = defaultLocale as LocalesValues\n): Promise<R> => {\n const file = await getFile(files, docKey, locale);\n\n return formatMetadata(docKey as string, file, locale) as R;\n};\n\nexport const getFileMetadataRecord = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n locale: LocalesValues = defaultLocale as LocalesValues\n): Promise<Record<keyof F, FileMetadata>> => {\n const filesEntries = await Promise.all(\n Object.entries(files).map(async ([key]) => [\n key,\n await getFileMetadata(files, key as keyof F, locale),\n ])\n );\n const filesResult = Object.fromEntries(filesEntries);\n return filesResult;\n};\n\nexport const getFileMetadataBySlug = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n slugs: string | string[],\n locale: LocalesValues = defaultLocale as LocalesValues,\n strict = false\n) => {\n const slugsArray = Array.isArray(slugs) ? slugs : [slugs];\n const filesMetadata = await getFileMetadataRecord(\n files,\n defaultLocale as LocalesValues\n );\n\n let fileMetadataArray: FileMetadata[] = Object.values(filesMetadata).filter(\n (fileMetadata) =>\n slugsArray.every((slug) => fileMetadata.slugs?.includes(slug))\n );\n\n if (strict) {\n fileMetadataArray = fileMetadataArray.filter(\n (fileMetadata) => fileMetadata.slugs.length === slugsArray.length\n );\n }\n\n if (locale !== defaultLocale) {\n const localizedFileMetadata = await Promise.all(\n fileMetadataArray.map(\n async (fileMetadata) =>\n await getFileMetadata(files, fileMetadata.docKey, locale)\n )\n );\n\n return localizedFileMetadata;\n }\n\n return fileMetadataArray;\n};\n\nexport const getFileBySlug = async <\n F extends Record<string, Record<LocalesValues, Promise<string>>>,\n>(\n files: F,\n slugs: string | string[],\n locale: LocalesValues = defaultLocale as LocalesValues,\n strict = false\n) => {\n const slugsArray = Array.isArray(slugs) ? slugs : [slugs];\n const filesMetadata = await getFileMetadataRecord(\n files,\n defaultLocale as LocalesValues\n );\n\n let fileMetadataArray = Object.values(filesMetadata).filter((fileMetadata) =>\n slugsArray.every((slug) => fileMetadata.slugs?.includes(slug))\n );\n\n if (strict) {\n fileMetadataArray = fileMetadataArray.filter(\n (fileMetadata) => fileMetadata.slugs.length === slugsArray.length\n );\n }\n\n const fileList = await Promise.all(\n fileMetadataArray.map(async (fileMetadata) => {\n const file = await getFile(files, fileMetadata.docKey, locale);\n return file;\n })\n );\n\n return fileList;\n};\n"],"mappings":"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"}
@@ -524,6 +524,26 @@ const blogEntry = {
524
524
  vi: readLocale("nextjs-multilingual-seo-comparison.md", "vi"),
525
525
  uk: readLocale("nextjs-multilingual-seo-comparison.md", "uk")
526
526
  },
527
+ "./blog/en/per-component_vs_centralized_i18n.md": {
528
+ en: readLocale("per-component_vs_centralized_i18n.md", "en"),
529
+ ru: readLocale("per-component_vs_centralized_i18n.md", "ru"),
530
+ ja: readLocale("per-component_vs_centralized_i18n.md", "ja"),
531
+ fr: readLocale("per-component_vs_centralized_i18n.md", "fr"),
532
+ ko: readLocale("per-component_vs_centralized_i18n.md", "ko"),
533
+ zh: readLocale("per-component_vs_centralized_i18n.md", "zh"),
534
+ es: readLocale("per-component_vs_centralized_i18n.md", "es"),
535
+ de: readLocale("per-component_vs_centralized_i18n.md", "de"),
536
+ ar: readLocale("per-component_vs_centralized_i18n.md", "ar"),
537
+ it: readLocale("per-component_vs_centralized_i18n.md", "it"),
538
+ "en-GB": readLocale("per-component_vs_centralized_i18n.md", "en-GB"),
539
+ pt: readLocale("per-component_vs_centralized_i18n.md", "pt"),
540
+ hi: readLocale("per-component_vs_centralized_i18n.md", "hi"),
541
+ tr: readLocale("per-component_vs_centralized_i18n.md", "tr"),
542
+ pl: readLocale("per-component_vs_centralized_i18n.md", "pl"),
543
+ id: readLocale("per-component_vs_centralized_i18n.md", "id"),
544
+ vi: readLocale("per-component_vs_centralized_i18n.md", "vi"),
545
+ uk: readLocale("per-component_vs_centralized_i18n.md", "uk")
546
+ },
527
547
  "./blog/en/rag_powered_documentation_assistant.md": {
528
548
  en: readLocale("rag_powered_documentation_assistant.md", "en"),
529
549
  ru: readLocale("rag_powered_documentation_assistant.md", "ru"),
@@ -1 +1 @@
1
- {"version":3,"file":"blog.entry.mjs","names":["pathDirname","baseDir: string"],"sources":["../../../src/generated/blog.entry.ts"],"sourcesContent":["/* AUTO-GENERATED – DO NOT EDIT */\n/* REGENERATE USING `pnpm prepare` */\nimport { existsSync } from 'node:fs';\nimport { readFile } from 'node:fs/promises';\nimport { join, dirname as pathDirname } from 'node:path';\nimport { fileURLToPath } from 'node:url';\nimport { getPackageJsonPath, getProjectRequire } from '@intlayer/config';\nimport type { LocalesValues } from '@intlayer/types';\n\n// Robustly resolve the base directory of the @intlayer/docs package in both\n// bundled environments (Next.js) and standalone CLIs (MCP via npx).\nconst currentDir =\n typeof __dirname !== 'undefined'\n ? __dirname\n : pathDirname(fileURLToPath(import.meta.url));\n\nlet baseDir: string;\ntry {\n // Prefer resolving from the location of this file (works for CLIs).\n const projectRequire = getProjectRequire(currentDir);\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n} catch {\n try {\n // Fallback: resolve from the consumer project (works for apps/bundlers).\n const projectRequire = getProjectRequire();\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n } catch {\n // Last resort: walk up from currentDir (useful when executed inside @intlayer/docs).\n baseDir = getPackageJsonPath(currentDir).baseDir;\n }\n}\n\nconst readLocale = (\n relativeAfterLocale: string,\n locale: LocalesValues\n): Promise<string> => {\n const target1 = join(baseDir, `./blog/${locale}/${relativeAfterLocale}`);\n if (existsSync(target1)) {\n return readFile(target1, 'utf8');\n }\n const target2 = join(baseDir, `./blog/en/${relativeAfterLocale}`);\n if (existsSync(target2)) {\n return readFile(target2, 'utf8');\n }\n\n return Promise.reject(\n new Error(\n `[docs] File not found: ${relativeAfterLocale} - locale: ${locale} - path: ${target1} - path: ${target2}`\n )\n );\n};\n\nexport const blogEntry = {\n './blog/en/compiler_vs_declarative_i18n.md': {\n en: readLocale('compiler_vs_declarative_i18n.md', 'en'),\n ru: readLocale('compiler_vs_declarative_i18n.md', 'ru'),\n ja: readLocale('compiler_vs_declarative_i18n.md', 'ja'),\n fr: readLocale('compiler_vs_declarative_i18n.md', 'fr'),\n ko: readLocale('compiler_vs_declarative_i18n.md', 'ko'),\n zh: readLocale('compiler_vs_declarative_i18n.md', 'zh'),\n es: readLocale('compiler_vs_declarative_i18n.md', 'es'),\n de: readLocale('compiler_vs_declarative_i18n.md', 'de'),\n ar: readLocale('compiler_vs_declarative_i18n.md', 'ar'),\n it: readLocale('compiler_vs_declarative_i18n.md', 'it'),\n 'en-GB': readLocale('compiler_vs_declarative_i18n.md', 'en-GB'),\n pt: readLocale('compiler_vs_declarative_i18n.md', 'pt'),\n hi: readLocale('compiler_vs_declarative_i18n.md', 'hi'),\n tr: readLocale('compiler_vs_declarative_i18n.md', 'tr'),\n pl: readLocale('compiler_vs_declarative_i18n.md', 'pl'),\n id: readLocale('compiler_vs_declarative_i18n.md', 'id'),\n vi: readLocale('compiler_vs_declarative_i18n.md', 'vi'),\n uk: readLocale('compiler_vs_declarative_i18n.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/i18n_using_next-i18next.md': {\n en: readLocale('i18n_using_next-i18next.md', 'en'),\n ru: readLocale('i18n_using_next-i18next.md', 'ru'),\n ja: readLocale('i18n_using_next-i18next.md', 'ja'),\n fr: readLocale('i18n_using_next-i18next.md', 'fr'),\n ko: readLocale('i18n_using_next-i18next.md', 'ko'),\n zh: readLocale('i18n_using_next-i18next.md', 'zh'),\n es: readLocale('i18n_using_next-i18next.md', 'es'),\n de: readLocale('i18n_using_next-i18next.md', 'de'),\n ar: readLocale('i18n_using_next-i18next.md', 'ar'),\n it: readLocale('i18n_using_next-i18next.md', 'it'),\n 'en-GB': readLocale('i18n_using_next-i18next.md', 'en-GB'),\n pt: readLocale('i18n_using_next-i18next.md', 'pt'),\n hi: readLocale('i18n_using_next-i18next.md', 'hi'),\n tr: readLocale('i18n_using_next-i18next.md', 'tr'),\n pl: readLocale('i18n_using_next-i18next.md', 'pl'),\n id: readLocale('i18n_using_next-i18next.md', 'id'),\n vi: readLocale('i18n_using_next-i18next.md', 'vi'),\n uk: readLocale('i18n_using_next-i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/i18n_using_next-intl.md': {\n en: readLocale('i18n_using_next-intl.md', 'en'),\n ru: readLocale('i18n_using_next-intl.md', 'ru'),\n ja: readLocale('i18n_using_next-intl.md', 'ja'),\n fr: readLocale('i18n_using_next-intl.md', 'fr'),\n ko: readLocale('i18n_using_next-intl.md', 'ko'),\n zh: readLocale('i18n_using_next-intl.md', 'zh'),\n es: readLocale('i18n_using_next-intl.md', 'es'),\n de: readLocale('i18n_using_next-intl.md', 'de'),\n ar: readLocale('i18n_using_next-intl.md', 'ar'),\n it: readLocale('i18n_using_next-intl.md', 'it'),\n 'en-GB': readLocale('i18n_using_next-intl.md', 'en-GB'),\n pt: readLocale('i18n_using_next-intl.md', 'pt'),\n hi: readLocale('i18n_using_next-intl.md', 'hi'),\n tr: readLocale('i18n_using_next-intl.md', 'tr'),\n pl: readLocale('i18n_using_next-intl.md', 'pl'),\n id: readLocale('i18n_using_next-intl.md', 'id'),\n vi: readLocale('i18n_using_next-intl.md', 'vi'),\n uk: readLocale('i18n_using_next-intl.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/index.md': {\n en: readLocale('index.md', 'en'),\n ru: readLocale('index.md', 'ru'),\n ja: readLocale('index.md', 'ja'),\n fr: readLocale('index.md', 'fr'),\n ko: readLocale('index.md', 'ko'),\n zh: readLocale('index.md', 'zh'),\n es: readLocale('index.md', 'es'),\n de: readLocale('index.md', 'de'),\n ar: readLocale('index.md', 'ar'),\n it: readLocale('index.md', 'it'),\n 'en-GB': readLocale('index.md', 'en-GB'),\n pt: readLocale('index.md', 'pt'),\n hi: readLocale('index.md', 'hi'),\n tr: readLocale('index.md', 'tr'),\n pl: readLocale('index.md', 'pl'),\n id: readLocale('index.md', 'id'),\n vi: readLocale('index.md', 'vi'),\n uk: readLocale('index.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/internationalization_and_SEO.md': {\n en: readLocale('internationalization_and_SEO.md', 'en'),\n ru: readLocale('internationalization_and_SEO.md', 'ru'),\n ja: readLocale('internationalization_and_SEO.md', 'ja'),\n fr: readLocale('internationalization_and_SEO.md', 'fr'),\n ko: readLocale('internationalization_and_SEO.md', 'ko'),\n zh: readLocale('internationalization_and_SEO.md', 'zh'),\n es: readLocale('internationalization_and_SEO.md', 'es'),\n de: readLocale('internationalization_and_SEO.md', 'de'),\n ar: readLocale('internationalization_and_SEO.md', 'ar'),\n it: readLocale('internationalization_and_SEO.md', 'it'),\n 'en-GB': readLocale('internationalization_and_SEO.md', 'en-GB'),\n pt: readLocale('internationalization_and_SEO.md', 'pt'),\n hi: readLocale('internationalization_and_SEO.md', 'hi'),\n tr: readLocale('internationalization_and_SEO.md', 'tr'),\n pl: readLocale('internationalization_and_SEO.md', 'pl'),\n id: readLocale('internationalization_and_SEO.md', 'id'),\n vi: readLocale('internationalization_and_SEO.md', 'vi'),\n uk: readLocale('internationalization_and_SEO.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_i18next.md': {\n en: readLocale('intlayer_with_i18next.md', 'en'),\n ru: readLocale('intlayer_with_i18next.md', 'ru'),\n ja: readLocale('intlayer_with_i18next.md', 'ja'),\n fr: readLocale('intlayer_with_i18next.md', 'fr'),\n ko: readLocale('intlayer_with_i18next.md', 'ko'),\n zh: readLocale('intlayer_with_i18next.md', 'zh'),\n es: readLocale('intlayer_with_i18next.md', 'es'),\n de: readLocale('intlayer_with_i18next.md', 'de'),\n ar: readLocale('intlayer_with_i18next.md', 'ar'),\n it: readLocale('intlayer_with_i18next.md', 'it'),\n 'en-GB': readLocale('intlayer_with_i18next.md', 'en-GB'),\n pt: readLocale('intlayer_with_i18next.md', 'pt'),\n hi: readLocale('intlayer_with_i18next.md', 'hi'),\n tr: readLocale('intlayer_with_i18next.md', 'tr'),\n pl: readLocale('intlayer_with_i18next.md', 'pl'),\n id: readLocale('intlayer_with_i18next.md', 'id'),\n vi: readLocale('intlayer_with_i18next.md', 'vi'),\n uk: readLocale('intlayer_with_i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_next-i18next.md': {\n en: readLocale('intlayer_with_next-i18next.md', 'en'),\n ru: readLocale('intlayer_with_next-i18next.md', 'ru'),\n ja: readLocale('intlayer_with_next-i18next.md', 'ja'),\n fr: readLocale('intlayer_with_next-i18next.md', 'fr'),\n ko: readLocale('intlayer_with_next-i18next.md', 'ko'),\n zh: readLocale('intlayer_with_next-i18next.md', 'zh'),\n es: readLocale('intlayer_with_next-i18next.md', 'es'),\n de: readLocale('intlayer_with_next-i18next.md', 'de'),\n ar: readLocale('intlayer_with_next-i18next.md', 'ar'),\n it: readLocale('intlayer_with_next-i18next.md', 'it'),\n 'en-GB': readLocale('intlayer_with_next-i18next.md', 'en-GB'),\n pt: readLocale('intlayer_with_next-i18next.md', 'pt'),\n hi: readLocale('intlayer_with_next-i18next.md', 'hi'),\n tr: readLocale('intlayer_with_next-i18next.md', 'tr'),\n pl: readLocale('intlayer_with_next-i18next.md', 'pl'),\n id: readLocale('intlayer_with_next-i18next.md', 'id'),\n vi: readLocale('intlayer_with_next-i18next.md', 'vi'),\n uk: readLocale('intlayer_with_next-i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_next-intl.md': {\n en: readLocale('intlayer_with_next-intl.md', 'en'),\n ru: readLocale('intlayer_with_next-intl.md', 'ru'),\n ja: readLocale('intlayer_with_next-intl.md', 'ja'),\n fr: readLocale('intlayer_with_next-intl.md', 'fr'),\n ko: readLocale('intlayer_with_next-intl.md', 'ko'),\n zh: readLocale('intlayer_with_next-intl.md', 'zh'),\n es: readLocale('intlayer_with_next-intl.md', 'es'),\n de: readLocale('intlayer_with_next-intl.md', 'de'),\n ar: readLocale('intlayer_with_next-intl.md', 'ar'),\n it: readLocale('intlayer_with_next-intl.md', 'it'),\n 'en-GB': readLocale('intlayer_with_next-intl.md', 'en-GB'),\n pt: readLocale('intlayer_with_next-intl.md', 'pt'),\n hi: readLocale('intlayer_with_next-intl.md', 'hi'),\n tr: readLocale('intlayer_with_next-intl.md', 'tr'),\n pl: readLocale('intlayer_with_next-intl.md', 'pl'),\n id: readLocale('intlayer_with_next-intl.md', 'id'),\n vi: readLocale('intlayer_with_next-intl.md', 'vi'),\n uk: readLocale('intlayer_with_next-intl.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_react-i18next.md': {\n en: readLocale('intlayer_with_react-i18next.md', 'en'),\n ru: readLocale('intlayer_with_react-i18next.md', 'ru'),\n ja: readLocale('intlayer_with_react-i18next.md', 'ja'),\n fr: readLocale('intlayer_with_react-i18next.md', 'fr'),\n ko: readLocale('intlayer_with_react-i18next.md', 'ko'),\n zh: readLocale('intlayer_with_react-i18next.md', 'zh'),\n es: readLocale('intlayer_with_react-i18next.md', 'es'),\n de: readLocale('intlayer_with_react-i18next.md', 'de'),\n ar: readLocale('intlayer_with_react-i18next.md', 'ar'),\n it: readLocale('intlayer_with_react-i18next.md', 'it'),\n 'en-GB': readLocale('intlayer_with_react-i18next.md', 'en-GB'),\n pt: readLocale('intlayer_with_react-i18next.md', 'pt'),\n hi: readLocale('intlayer_with_react-i18next.md', 'hi'),\n tr: readLocale('intlayer_with_react-i18next.md', 'tr'),\n pl: readLocale('intlayer_with_react-i18next.md', 'pl'),\n id: readLocale('intlayer_with_react-i18next.md', 'id'),\n vi: readLocale('intlayer_with_react-i18next.md', 'vi'),\n uk: readLocale('intlayer_with_react-i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_react-intl.md': {\n en: readLocale('intlayer_with_react-intl.md', 'en'),\n ru: readLocale('intlayer_with_react-intl.md', 'ru'),\n ja: readLocale('intlayer_with_react-intl.md', 'ja'),\n fr: readLocale('intlayer_with_react-intl.md', 'fr'),\n ko: readLocale('intlayer_with_react-intl.md', 'ko'),\n zh: readLocale('intlayer_with_react-intl.md', 'zh'),\n es: readLocale('intlayer_with_react-intl.md', 'es'),\n de: readLocale('intlayer_with_react-intl.md', 'de'),\n ar: readLocale('intlayer_with_react-intl.md', 'ar'),\n it: readLocale('intlayer_with_react-intl.md', 'it'),\n 'en-GB': readLocale('intlayer_with_react-intl.md', 'en-GB'),\n pt: readLocale('intlayer_with_react-intl.md', 'pt'),\n hi: readLocale('intlayer_with_react-intl.md', 'hi'),\n tr: readLocale('intlayer_with_react-intl.md', 'tr'),\n pl: readLocale('intlayer_with_react-intl.md', 'pl'),\n id: readLocale('intlayer_with_react-intl.md', 'id'),\n vi: readLocale('intlayer_with_react-intl.md', 'vi'),\n uk: readLocale('intlayer_with_react-intl.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_vue-i18n.md': {\n en: readLocale('intlayer_with_vue-i18n.md', 'en'),\n ru: readLocale('intlayer_with_vue-i18n.md', 'ru'),\n ja: readLocale('intlayer_with_vue-i18n.md', 'ja'),\n fr: readLocale('intlayer_with_vue-i18n.md', 'fr'),\n ko: readLocale('intlayer_with_vue-i18n.md', 'ko'),\n zh: readLocale('intlayer_with_vue-i18n.md', 'zh'),\n es: readLocale('intlayer_with_vue-i18n.md', 'es'),\n de: readLocale('intlayer_with_vue-i18n.md', 'de'),\n ar: readLocale('intlayer_with_vue-i18n.md', 'ar'),\n it: readLocale('intlayer_with_vue-i18n.md', 'it'),\n 'en-GB': readLocale('intlayer_with_vue-i18n.md', 'en-GB'),\n pt: readLocale('intlayer_with_vue-i18n.md', 'pt'),\n hi: readLocale('intlayer_with_vue-i18n.md', 'hi'),\n tr: readLocale('intlayer_with_vue-i18n.md', 'tr'),\n pl: readLocale('intlayer_with_vue-i18n.md', 'pl'),\n id: readLocale('intlayer_with_vue-i18n.md', 'id'),\n vi: readLocale('intlayer_with_vue-i18n.md', 'vi'),\n uk: readLocale('intlayer_with_vue-i18n.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/l10n_platform_alternative/Lokalise.md': {\n en: readLocale('l10n_platform_alternative/Lokalise.md', 'en'),\n ru: readLocale('l10n_platform_alternative/Lokalise.md', 'ru'),\n ja: readLocale('l10n_platform_alternative/Lokalise.md', 'ja'),\n fr: readLocale('l10n_platform_alternative/Lokalise.md', 'fr'),\n ko: readLocale('l10n_platform_alternative/Lokalise.md', 'ko'),\n zh: readLocale('l10n_platform_alternative/Lokalise.md', 'zh'),\n es: readLocale('l10n_platform_alternative/Lokalise.md', 'es'),\n de: readLocale('l10n_platform_alternative/Lokalise.md', 'de'),\n ar: readLocale('l10n_platform_alternative/Lokalise.md', 'ar'),\n it: readLocale('l10n_platform_alternative/Lokalise.md', 'it'),\n 'en-GB': readLocale('l10n_platform_alternative/Lokalise.md', 'en-GB'),\n pt: readLocale('l10n_platform_alternative/Lokalise.md', 'pt'),\n hi: readLocale('l10n_platform_alternative/Lokalise.md', 'hi'),\n tr: readLocale('l10n_platform_alternative/Lokalise.md', 'tr'),\n pl: readLocale('l10n_platform_alternative/Lokalise.md', 'pl'),\n id: readLocale('l10n_platform_alternative/Lokalise.md', 'id'),\n vi: readLocale('l10n_platform_alternative/Lokalise.md', 'vi'),\n uk: readLocale('l10n_platform_alternative/Lokalise.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/l10n_platform_alternative/crowdin.md': {\n en: readLocale('l10n_platform_alternative/crowdin.md', 'en'),\n ru: readLocale('l10n_platform_alternative/crowdin.md', 'ru'),\n ja: readLocale('l10n_platform_alternative/crowdin.md', 'ja'),\n fr: readLocale('l10n_platform_alternative/crowdin.md', 'fr'),\n ko: readLocale('l10n_platform_alternative/crowdin.md', 'ko'),\n zh: readLocale('l10n_platform_alternative/crowdin.md', 'zh'),\n es: readLocale('l10n_platform_alternative/crowdin.md', 'es'),\n de: readLocale('l10n_platform_alternative/crowdin.md', 'de'),\n ar: readLocale('l10n_platform_alternative/crowdin.md', 'ar'),\n it: readLocale('l10n_platform_alternative/crowdin.md', 'it'),\n 'en-GB': readLocale('l10n_platform_alternative/crowdin.md', 'en-GB'),\n pt: readLocale('l10n_platform_alternative/crowdin.md', 'pt'),\n hi: readLocale('l10n_platform_alternative/crowdin.md', 'hi'),\n tr: readLocale('l10n_platform_alternative/crowdin.md', 'tr'),\n pl: readLocale('l10n_platform_alternative/crowdin.md', 'pl'),\n id: readLocale('l10n_platform_alternative/crowdin.md', 'id'),\n vi: readLocale('l10n_platform_alternative/crowdin.md', 'vi'),\n uk: readLocale('l10n_platform_alternative/crowdin.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/l10n_platform_alternative/phrase.md': {\n en: readLocale('l10n_platform_alternative/phrase.md', 'en'),\n ru: readLocale('l10n_platform_alternative/phrase.md', 'ru'),\n ja: readLocale('l10n_platform_alternative/phrase.md', 'ja'),\n fr: readLocale('l10n_platform_alternative/phrase.md', 'fr'),\n ko: readLocale('l10n_platform_alternative/phrase.md', 'ko'),\n zh: readLocale('l10n_platform_alternative/phrase.md', 'zh'),\n es: readLocale('l10n_platform_alternative/phrase.md', 'es'),\n de: readLocale('l10n_platform_alternative/phrase.md', 'de'),\n ar: readLocale('l10n_platform_alternative/phrase.md', 'ar'),\n it: readLocale('l10n_platform_alternative/phrase.md', 'it'),\n 'en-GB': readLocale('l10n_platform_alternative/phrase.md', 'en-GB'),\n pt: readLocale('l10n_platform_alternative/phrase.md', 'pt'),\n hi: readLocale('l10n_platform_alternative/phrase.md', 'hi'),\n tr: readLocale('l10n_platform_alternative/phrase.md', 'tr'),\n pl: readLocale('l10n_platform_alternative/phrase.md', 'pl'),\n id: readLocale('l10n_platform_alternative/phrase.md', 'id'),\n vi: readLocale('l10n_platform_alternative/phrase.md', 'vi'),\n uk: readLocale('l10n_platform_alternative/phrase.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/CMS/drupal.md': {\n en: readLocale('list_i18n_technologies/CMS/drupal.md', 'en'),\n ru: readLocale('list_i18n_technologies/CMS/drupal.md', 'ru'),\n ja: readLocale('list_i18n_technologies/CMS/drupal.md', 'ja'),\n fr: readLocale('list_i18n_technologies/CMS/drupal.md', 'fr'),\n ko: readLocale('list_i18n_technologies/CMS/drupal.md', 'ko'),\n zh: readLocale('list_i18n_technologies/CMS/drupal.md', 'zh'),\n es: readLocale('list_i18n_technologies/CMS/drupal.md', 'es'),\n de: readLocale('list_i18n_technologies/CMS/drupal.md', 'de'),\n ar: readLocale('list_i18n_technologies/CMS/drupal.md', 'ar'),\n it: readLocale('list_i18n_technologies/CMS/drupal.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/CMS/drupal.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/CMS/drupal.md', 'pt'),\n hi: readLocale('list_i18n_technologies/CMS/drupal.md', 'hi'),\n tr: readLocale('list_i18n_technologies/CMS/drupal.md', 'tr'),\n pl: readLocale('list_i18n_technologies/CMS/drupal.md', 'pl'),\n id: readLocale('list_i18n_technologies/CMS/drupal.md', 'id'),\n vi: readLocale('list_i18n_technologies/CMS/drupal.md', 'vi'),\n uk: readLocale('list_i18n_technologies/CMS/drupal.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/CMS/wix.md': {\n en: readLocale('list_i18n_technologies/CMS/wix.md', 'en'),\n ru: readLocale('list_i18n_technologies/CMS/wix.md', 'ru'),\n ja: readLocale('list_i18n_technologies/CMS/wix.md', 'ja'),\n fr: readLocale('list_i18n_technologies/CMS/wix.md', 'fr'),\n ko: readLocale('list_i18n_technologies/CMS/wix.md', 'ko'),\n zh: readLocale('list_i18n_technologies/CMS/wix.md', 'zh'),\n es: readLocale('list_i18n_technologies/CMS/wix.md', 'es'),\n de: readLocale('list_i18n_technologies/CMS/wix.md', 'de'),\n ar: readLocale('list_i18n_technologies/CMS/wix.md', 'ar'),\n it: readLocale('list_i18n_technologies/CMS/wix.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/CMS/wix.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/CMS/wix.md', 'pt'),\n hi: readLocale('list_i18n_technologies/CMS/wix.md', 'hi'),\n tr: readLocale('list_i18n_technologies/CMS/wix.md', 'tr'),\n pl: readLocale('list_i18n_technologies/CMS/wix.md', 'pl'),\n id: readLocale('list_i18n_technologies/CMS/wix.md', 'id'),\n vi: readLocale('list_i18n_technologies/CMS/wix.md', 'vi'),\n uk: readLocale('list_i18n_technologies/CMS/wix.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/CMS/wordpress.md': {\n en: readLocale('list_i18n_technologies/CMS/wordpress.md', 'en'),\n ru: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ru'),\n ja: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ja'),\n fr: readLocale('list_i18n_technologies/CMS/wordpress.md', 'fr'),\n ko: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ko'),\n zh: readLocale('list_i18n_technologies/CMS/wordpress.md', 'zh'),\n es: readLocale('list_i18n_technologies/CMS/wordpress.md', 'es'),\n de: readLocale('list_i18n_technologies/CMS/wordpress.md', 'de'),\n ar: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ar'),\n it: readLocale('list_i18n_technologies/CMS/wordpress.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/CMS/wordpress.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/CMS/wordpress.md', 'pt'),\n hi: readLocale('list_i18n_technologies/CMS/wordpress.md', 'hi'),\n tr: readLocale('list_i18n_technologies/CMS/wordpress.md', 'tr'),\n pl: readLocale('list_i18n_technologies/CMS/wordpress.md', 'pl'),\n id: readLocale('list_i18n_technologies/CMS/wordpress.md', 'id'),\n vi: readLocale('list_i18n_technologies/CMS/wordpress.md', 'vi'),\n uk: readLocale('list_i18n_technologies/CMS/wordpress.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/angular.md': {\n en: readLocale('list_i18n_technologies/frameworks/angular.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/angular.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/angular.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/angular.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/angular.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/angular.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/angular.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/angular.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/angular.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/angular.md', 'it'),\n 'en-GB': readLocale(\n 'list_i18n_technologies/frameworks/angular.md',\n 'en-GB'\n ),\n pt: readLocale('list_i18n_technologies/frameworks/angular.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/angular.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/angular.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/angular.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/angular.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/angular.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/angular.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/flutter.md': {\n en: readLocale('list_i18n_technologies/frameworks/flutter.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/flutter.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/flutter.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/flutter.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/flutter.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/flutter.md', 'it'),\n 'en-GB': readLocale(\n 'list_i18n_technologies/frameworks/flutter.md',\n 'en-GB'\n ),\n pt: readLocale('list_i18n_technologies/frameworks/flutter.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/flutter.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/flutter.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/flutter.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/flutter.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/flutter.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/flutter.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/react-native.md': {\n en: readLocale('list_i18n_technologies/frameworks/react-native.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/react-native.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/react-native.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/react-native.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/react-native.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/react-native.md', 'it'),\n 'en-GB': readLocale(\n 'list_i18n_technologies/frameworks/react-native.md',\n 'en-GB'\n ),\n pt: readLocale('list_i18n_technologies/frameworks/react-native.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/react-native.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/react-native.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/react-native.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/react-native.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/react-native.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/react-native.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/react.md': {\n en: readLocale('list_i18n_technologies/frameworks/react.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/react.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/react.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/react.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/react.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/react.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/react.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/react.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/react.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/react.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/frameworks/react.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/frameworks/react.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/react.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/react.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/react.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/react.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/react.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/react.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/svelte.md': {\n en: readLocale('list_i18n_technologies/frameworks/svelte.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/svelte.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/svelte.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/svelte.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/svelte.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/svelte.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/frameworks/svelte.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/frameworks/svelte.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/svelte.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/svelte.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/svelte.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/svelte.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/svelte.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/svelte.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/vue.md': {\n en: readLocale('list_i18n_technologies/frameworks/vue.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/vue.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/vue.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/vue.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/vue.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/vue.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/vue.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/vue.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/vue.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/vue.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/frameworks/vue.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/frameworks/vue.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/vue.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/vue.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/vue.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/vue.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/vue.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/vue.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/next-i18next_vs_next-intl_vs_intlayer.md': {\n en: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'en'),\n ru: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ru'),\n ja: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ja'),\n fr: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'fr'),\n ko: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ko'),\n zh: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'zh'),\n es: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'es'),\n de: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'de'),\n ar: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ar'),\n it: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'it'),\n 'en-GB': readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'en-GB'),\n pt: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'pt'),\n hi: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'hi'),\n tr: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'tr'),\n pl: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'pl'),\n id: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'id'),\n vi: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'vi'),\n uk: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/nextjs-multilingual-seo-comparison.md': {\n en: readLocale('nextjs-multilingual-seo-comparison.md', 'en'),\n ru: readLocale('nextjs-multilingual-seo-comparison.md', 'ru'),\n ja: readLocale('nextjs-multilingual-seo-comparison.md', 'ja'),\n fr: readLocale('nextjs-multilingual-seo-comparison.md', 'fr'),\n ko: readLocale('nextjs-multilingual-seo-comparison.md', 'ko'),\n zh: readLocale('nextjs-multilingual-seo-comparison.md', 'zh'),\n es: readLocale('nextjs-multilingual-seo-comparison.md', 'es'),\n de: readLocale('nextjs-multilingual-seo-comparison.md', 'de'),\n ar: readLocale('nextjs-multilingual-seo-comparison.md', 'ar'),\n it: readLocale('nextjs-multilingual-seo-comparison.md', 'it'),\n 'en-GB': readLocale('nextjs-multilingual-seo-comparison.md', 'en-GB'),\n pt: readLocale('nextjs-multilingual-seo-comparison.md', 'pt'),\n hi: readLocale('nextjs-multilingual-seo-comparison.md', 'hi'),\n tr: readLocale('nextjs-multilingual-seo-comparison.md', 'tr'),\n pl: readLocale('nextjs-multilingual-seo-comparison.md', 'pl'),\n id: readLocale('nextjs-multilingual-seo-comparison.md', 'id'),\n vi: readLocale('nextjs-multilingual-seo-comparison.md', 'vi'),\n uk: readLocale('nextjs-multilingual-seo-comparison.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/rag_powered_documentation_assistant.md': {\n en: readLocale('rag_powered_documentation_assistant.md', 'en'),\n ru: readLocale('rag_powered_documentation_assistant.md', 'ru'),\n ja: readLocale('rag_powered_documentation_assistant.md', 'ja'),\n fr: readLocale('rag_powered_documentation_assistant.md', 'fr'),\n ko: readLocale('rag_powered_documentation_assistant.md', 'ko'),\n zh: readLocale('rag_powered_documentation_assistant.md', 'zh'),\n es: readLocale('rag_powered_documentation_assistant.md', 'es'),\n de: readLocale('rag_powered_documentation_assistant.md', 'de'),\n ar: readLocale('rag_powered_documentation_assistant.md', 'ar'),\n it: readLocale('rag_powered_documentation_assistant.md', 'it'),\n 'en-GB': readLocale('rag_powered_documentation_assistant.md', 'en-GB'),\n pt: readLocale('rag_powered_documentation_assistant.md', 'pt'),\n hi: readLocale('rag_powered_documentation_assistant.md', 'hi'),\n tr: readLocale('rag_powered_documentation_assistant.md', 'tr'),\n pl: readLocale('rag_powered_documentation_assistant.md', 'pl'),\n id: readLocale('rag_powered_documentation_assistant.md', 'id'),\n vi: readLocale('rag_powered_documentation_assistant.md', 'vi'),\n uk: readLocale('rag_powered_documentation_assistant.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/react-i18next_vs_react-intl_vs_intlayer.md': {\n en: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'en'),\n ru: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ru'),\n ja: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ja'),\n fr: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'fr'),\n ko: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ko'),\n zh: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'zh'),\n es: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'es'),\n de: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'de'),\n ar: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ar'),\n it: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'it'),\n 'en-GB': readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'en-GB'),\n pt: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'pt'),\n hi: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'hi'),\n tr: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'tr'),\n pl: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'pl'),\n id: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'id'),\n vi: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'vi'),\n uk: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/vue-i18n_vs_intlayer.md': {\n en: readLocale('vue-i18n_vs_intlayer.md', 'en'),\n ru: readLocale('vue-i18n_vs_intlayer.md', 'ru'),\n ja: readLocale('vue-i18n_vs_intlayer.md', 'ja'),\n fr: readLocale('vue-i18n_vs_intlayer.md', 'fr'),\n ko: readLocale('vue-i18n_vs_intlayer.md', 'ko'),\n zh: readLocale('vue-i18n_vs_intlayer.md', 'zh'),\n es: readLocale('vue-i18n_vs_intlayer.md', 'es'),\n de: readLocale('vue-i18n_vs_intlayer.md', 'de'),\n ar: readLocale('vue-i18n_vs_intlayer.md', 'ar'),\n it: readLocale('vue-i18n_vs_intlayer.md', 'it'),\n 'en-GB': readLocale('vue-i18n_vs_intlayer.md', 'en-GB'),\n pt: readLocale('vue-i18n_vs_intlayer.md', 'pt'),\n hi: readLocale('vue-i18n_vs_intlayer.md', 'hi'),\n tr: readLocale('vue-i18n_vs_intlayer.md', 'tr'),\n pl: readLocale('vue-i18n_vs_intlayer.md', 'pl'),\n id: readLocale('vue-i18n_vs_intlayer.md', 'id'),\n vi: readLocale('vue-i18n_vs_intlayer.md', 'vi'),\n uk: readLocale('vue-i18n_vs_intlayer.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/what_is_internationalization.md': {\n en: readLocale('what_is_internationalization.md', 'en'),\n ru: readLocale('what_is_internationalization.md', 'ru'),\n ja: readLocale('what_is_internationalization.md', 'ja'),\n fr: readLocale('what_is_internationalization.md', 'fr'),\n ko: readLocale('what_is_internationalization.md', 'ko'),\n zh: readLocale('what_is_internationalization.md', 'zh'),\n es: readLocale('what_is_internationalization.md', 'es'),\n de: readLocale('what_is_internationalization.md', 'de'),\n ar: readLocale('what_is_internationalization.md', 'ar'),\n it: readLocale('what_is_internationalization.md', 'it'),\n 'en-GB': readLocale('what_is_internationalization.md', 'en-GB'),\n pt: readLocale('what_is_internationalization.md', 'pt'),\n hi: readLocale('what_is_internationalization.md', 'hi'),\n tr: readLocale('what_is_internationalization.md', 'tr'),\n pl: readLocale('what_is_internationalization.md', 'pl'),\n id: readLocale('what_is_internationalization.md', 'id'),\n vi: readLocale('what_is_internationalization.md', 'vi'),\n uk: readLocale('what_is_internationalization.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n} as const;\n"],"mappings":"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"}
1
+ {"version":3,"file":"blog.entry.mjs","names":["pathDirname"],"sources":["../../../src/generated/blog.entry.ts"],"sourcesContent":["/* AUTO-GENERATED – DO NOT EDIT */\n/* REGENERATE USING `pnpm prepare` */\nimport { existsSync } from 'node:fs';\nimport { readFile } from 'node:fs/promises';\nimport { join, dirname as pathDirname } from 'node:path';\nimport { fileURLToPath } from 'node:url';\nimport { getPackageJsonPath, getProjectRequire } from '@intlayer/config';\nimport type { LocalesValues } from '@intlayer/types';\n\n// Robustly resolve the base directory of the @intlayer/docs package in both\n// bundled environments (Next.js) and standalone CLIs (MCP via npx).\nconst currentDir =\n typeof __dirname !== 'undefined'\n ? __dirname\n : pathDirname(fileURLToPath(import.meta.url));\n\nlet baseDir: string;\ntry {\n // Prefer resolving from the location of this file (works for CLIs).\n const projectRequire = getProjectRequire(currentDir);\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n} catch {\n try {\n // Fallback: resolve from the consumer project (works for apps/bundlers).\n const projectRequire = getProjectRequire();\n const docEntryPath = projectRequire.resolve('@intlayer/docs');\n baseDir = getPackageJsonPath(docEntryPath).baseDir;\n } catch {\n // Last resort: walk up from currentDir (useful when executed inside @intlayer/docs).\n baseDir = getPackageJsonPath(currentDir).baseDir;\n }\n}\n\nconst readLocale = (\n relativeAfterLocale: string,\n locale: LocalesValues\n): Promise<string> => {\n const target1 = join(baseDir, `./blog/${locale}/${relativeAfterLocale}`);\n if (existsSync(target1)) {\n return readFile(target1, 'utf8');\n }\n const target2 = join(baseDir, `./blog/en/${relativeAfterLocale}`);\n if (existsSync(target2)) {\n return readFile(target2, 'utf8');\n }\n\n return Promise.reject(\n new Error(\n `[docs] File not found: ${relativeAfterLocale} - locale: ${locale} - path: ${target1} - path: ${target2}`\n )\n );\n};\n\nexport const blogEntry = {\n './blog/en/compiler_vs_declarative_i18n.md': {\n en: readLocale('compiler_vs_declarative_i18n.md', 'en'),\n ru: readLocale('compiler_vs_declarative_i18n.md', 'ru'),\n ja: readLocale('compiler_vs_declarative_i18n.md', 'ja'),\n fr: readLocale('compiler_vs_declarative_i18n.md', 'fr'),\n ko: readLocale('compiler_vs_declarative_i18n.md', 'ko'),\n zh: readLocale('compiler_vs_declarative_i18n.md', 'zh'),\n es: readLocale('compiler_vs_declarative_i18n.md', 'es'),\n de: readLocale('compiler_vs_declarative_i18n.md', 'de'),\n ar: readLocale('compiler_vs_declarative_i18n.md', 'ar'),\n it: readLocale('compiler_vs_declarative_i18n.md', 'it'),\n 'en-GB': readLocale('compiler_vs_declarative_i18n.md', 'en-GB'),\n pt: readLocale('compiler_vs_declarative_i18n.md', 'pt'),\n hi: readLocale('compiler_vs_declarative_i18n.md', 'hi'),\n tr: readLocale('compiler_vs_declarative_i18n.md', 'tr'),\n pl: readLocale('compiler_vs_declarative_i18n.md', 'pl'),\n id: readLocale('compiler_vs_declarative_i18n.md', 'id'),\n vi: readLocale('compiler_vs_declarative_i18n.md', 'vi'),\n uk: readLocale('compiler_vs_declarative_i18n.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/i18n_using_next-i18next.md': {\n en: readLocale('i18n_using_next-i18next.md', 'en'),\n ru: readLocale('i18n_using_next-i18next.md', 'ru'),\n ja: readLocale('i18n_using_next-i18next.md', 'ja'),\n fr: readLocale('i18n_using_next-i18next.md', 'fr'),\n ko: readLocale('i18n_using_next-i18next.md', 'ko'),\n zh: readLocale('i18n_using_next-i18next.md', 'zh'),\n es: readLocale('i18n_using_next-i18next.md', 'es'),\n de: readLocale('i18n_using_next-i18next.md', 'de'),\n ar: readLocale('i18n_using_next-i18next.md', 'ar'),\n it: readLocale('i18n_using_next-i18next.md', 'it'),\n 'en-GB': readLocale('i18n_using_next-i18next.md', 'en-GB'),\n pt: readLocale('i18n_using_next-i18next.md', 'pt'),\n hi: readLocale('i18n_using_next-i18next.md', 'hi'),\n tr: readLocale('i18n_using_next-i18next.md', 'tr'),\n pl: readLocale('i18n_using_next-i18next.md', 'pl'),\n id: readLocale('i18n_using_next-i18next.md', 'id'),\n vi: readLocale('i18n_using_next-i18next.md', 'vi'),\n uk: readLocale('i18n_using_next-i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/i18n_using_next-intl.md': {\n en: readLocale('i18n_using_next-intl.md', 'en'),\n ru: readLocale('i18n_using_next-intl.md', 'ru'),\n ja: readLocale('i18n_using_next-intl.md', 'ja'),\n fr: readLocale('i18n_using_next-intl.md', 'fr'),\n ko: readLocale('i18n_using_next-intl.md', 'ko'),\n zh: readLocale('i18n_using_next-intl.md', 'zh'),\n es: readLocale('i18n_using_next-intl.md', 'es'),\n de: readLocale('i18n_using_next-intl.md', 'de'),\n ar: readLocale('i18n_using_next-intl.md', 'ar'),\n it: readLocale('i18n_using_next-intl.md', 'it'),\n 'en-GB': readLocale('i18n_using_next-intl.md', 'en-GB'),\n pt: readLocale('i18n_using_next-intl.md', 'pt'),\n hi: readLocale('i18n_using_next-intl.md', 'hi'),\n tr: readLocale('i18n_using_next-intl.md', 'tr'),\n pl: readLocale('i18n_using_next-intl.md', 'pl'),\n id: readLocale('i18n_using_next-intl.md', 'id'),\n vi: readLocale('i18n_using_next-intl.md', 'vi'),\n uk: readLocale('i18n_using_next-intl.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/index.md': {\n en: readLocale('index.md', 'en'),\n ru: readLocale('index.md', 'ru'),\n ja: readLocale('index.md', 'ja'),\n fr: readLocale('index.md', 'fr'),\n ko: readLocale('index.md', 'ko'),\n zh: readLocale('index.md', 'zh'),\n es: readLocale('index.md', 'es'),\n de: readLocale('index.md', 'de'),\n ar: readLocale('index.md', 'ar'),\n it: readLocale('index.md', 'it'),\n 'en-GB': readLocale('index.md', 'en-GB'),\n pt: readLocale('index.md', 'pt'),\n hi: readLocale('index.md', 'hi'),\n tr: readLocale('index.md', 'tr'),\n pl: readLocale('index.md', 'pl'),\n id: readLocale('index.md', 'id'),\n vi: readLocale('index.md', 'vi'),\n uk: readLocale('index.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/internationalization_and_SEO.md': {\n en: readLocale('internationalization_and_SEO.md', 'en'),\n ru: readLocale('internationalization_and_SEO.md', 'ru'),\n ja: readLocale('internationalization_and_SEO.md', 'ja'),\n fr: readLocale('internationalization_and_SEO.md', 'fr'),\n ko: readLocale('internationalization_and_SEO.md', 'ko'),\n zh: readLocale('internationalization_and_SEO.md', 'zh'),\n es: readLocale('internationalization_and_SEO.md', 'es'),\n de: readLocale('internationalization_and_SEO.md', 'de'),\n ar: readLocale('internationalization_and_SEO.md', 'ar'),\n it: readLocale('internationalization_and_SEO.md', 'it'),\n 'en-GB': readLocale('internationalization_and_SEO.md', 'en-GB'),\n pt: readLocale('internationalization_and_SEO.md', 'pt'),\n hi: readLocale('internationalization_and_SEO.md', 'hi'),\n tr: readLocale('internationalization_and_SEO.md', 'tr'),\n pl: readLocale('internationalization_and_SEO.md', 'pl'),\n id: readLocale('internationalization_and_SEO.md', 'id'),\n vi: readLocale('internationalization_and_SEO.md', 'vi'),\n uk: readLocale('internationalization_and_SEO.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_i18next.md': {\n en: readLocale('intlayer_with_i18next.md', 'en'),\n ru: readLocale('intlayer_with_i18next.md', 'ru'),\n ja: readLocale('intlayer_with_i18next.md', 'ja'),\n fr: readLocale('intlayer_with_i18next.md', 'fr'),\n ko: readLocale('intlayer_with_i18next.md', 'ko'),\n zh: readLocale('intlayer_with_i18next.md', 'zh'),\n es: readLocale('intlayer_with_i18next.md', 'es'),\n de: readLocale('intlayer_with_i18next.md', 'de'),\n ar: readLocale('intlayer_with_i18next.md', 'ar'),\n it: readLocale('intlayer_with_i18next.md', 'it'),\n 'en-GB': readLocale('intlayer_with_i18next.md', 'en-GB'),\n pt: readLocale('intlayer_with_i18next.md', 'pt'),\n hi: readLocale('intlayer_with_i18next.md', 'hi'),\n tr: readLocale('intlayer_with_i18next.md', 'tr'),\n pl: readLocale('intlayer_with_i18next.md', 'pl'),\n id: readLocale('intlayer_with_i18next.md', 'id'),\n vi: readLocale('intlayer_with_i18next.md', 'vi'),\n uk: readLocale('intlayer_with_i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_next-i18next.md': {\n en: readLocale('intlayer_with_next-i18next.md', 'en'),\n ru: readLocale('intlayer_with_next-i18next.md', 'ru'),\n ja: readLocale('intlayer_with_next-i18next.md', 'ja'),\n fr: readLocale('intlayer_with_next-i18next.md', 'fr'),\n ko: readLocale('intlayer_with_next-i18next.md', 'ko'),\n zh: readLocale('intlayer_with_next-i18next.md', 'zh'),\n es: readLocale('intlayer_with_next-i18next.md', 'es'),\n de: readLocale('intlayer_with_next-i18next.md', 'de'),\n ar: readLocale('intlayer_with_next-i18next.md', 'ar'),\n it: readLocale('intlayer_with_next-i18next.md', 'it'),\n 'en-GB': readLocale('intlayer_with_next-i18next.md', 'en-GB'),\n pt: readLocale('intlayer_with_next-i18next.md', 'pt'),\n hi: readLocale('intlayer_with_next-i18next.md', 'hi'),\n tr: readLocale('intlayer_with_next-i18next.md', 'tr'),\n pl: readLocale('intlayer_with_next-i18next.md', 'pl'),\n id: readLocale('intlayer_with_next-i18next.md', 'id'),\n vi: readLocale('intlayer_with_next-i18next.md', 'vi'),\n uk: readLocale('intlayer_with_next-i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_next-intl.md': {\n en: readLocale('intlayer_with_next-intl.md', 'en'),\n ru: readLocale('intlayer_with_next-intl.md', 'ru'),\n ja: readLocale('intlayer_with_next-intl.md', 'ja'),\n fr: readLocale('intlayer_with_next-intl.md', 'fr'),\n ko: readLocale('intlayer_with_next-intl.md', 'ko'),\n zh: readLocale('intlayer_with_next-intl.md', 'zh'),\n es: readLocale('intlayer_with_next-intl.md', 'es'),\n de: readLocale('intlayer_with_next-intl.md', 'de'),\n ar: readLocale('intlayer_with_next-intl.md', 'ar'),\n it: readLocale('intlayer_with_next-intl.md', 'it'),\n 'en-GB': readLocale('intlayer_with_next-intl.md', 'en-GB'),\n pt: readLocale('intlayer_with_next-intl.md', 'pt'),\n hi: readLocale('intlayer_with_next-intl.md', 'hi'),\n tr: readLocale('intlayer_with_next-intl.md', 'tr'),\n pl: readLocale('intlayer_with_next-intl.md', 'pl'),\n id: readLocale('intlayer_with_next-intl.md', 'id'),\n vi: readLocale('intlayer_with_next-intl.md', 'vi'),\n uk: readLocale('intlayer_with_next-intl.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_react-i18next.md': {\n en: readLocale('intlayer_with_react-i18next.md', 'en'),\n ru: readLocale('intlayer_with_react-i18next.md', 'ru'),\n ja: readLocale('intlayer_with_react-i18next.md', 'ja'),\n fr: readLocale('intlayer_with_react-i18next.md', 'fr'),\n ko: readLocale('intlayer_with_react-i18next.md', 'ko'),\n zh: readLocale('intlayer_with_react-i18next.md', 'zh'),\n es: readLocale('intlayer_with_react-i18next.md', 'es'),\n de: readLocale('intlayer_with_react-i18next.md', 'de'),\n ar: readLocale('intlayer_with_react-i18next.md', 'ar'),\n it: readLocale('intlayer_with_react-i18next.md', 'it'),\n 'en-GB': readLocale('intlayer_with_react-i18next.md', 'en-GB'),\n pt: readLocale('intlayer_with_react-i18next.md', 'pt'),\n hi: readLocale('intlayer_with_react-i18next.md', 'hi'),\n tr: readLocale('intlayer_with_react-i18next.md', 'tr'),\n pl: readLocale('intlayer_with_react-i18next.md', 'pl'),\n id: readLocale('intlayer_with_react-i18next.md', 'id'),\n vi: readLocale('intlayer_with_react-i18next.md', 'vi'),\n uk: readLocale('intlayer_with_react-i18next.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_react-intl.md': {\n en: readLocale('intlayer_with_react-intl.md', 'en'),\n ru: readLocale('intlayer_with_react-intl.md', 'ru'),\n ja: readLocale('intlayer_with_react-intl.md', 'ja'),\n fr: readLocale('intlayer_with_react-intl.md', 'fr'),\n ko: readLocale('intlayer_with_react-intl.md', 'ko'),\n zh: readLocale('intlayer_with_react-intl.md', 'zh'),\n es: readLocale('intlayer_with_react-intl.md', 'es'),\n de: readLocale('intlayer_with_react-intl.md', 'de'),\n ar: readLocale('intlayer_with_react-intl.md', 'ar'),\n it: readLocale('intlayer_with_react-intl.md', 'it'),\n 'en-GB': readLocale('intlayer_with_react-intl.md', 'en-GB'),\n pt: readLocale('intlayer_with_react-intl.md', 'pt'),\n hi: readLocale('intlayer_with_react-intl.md', 'hi'),\n tr: readLocale('intlayer_with_react-intl.md', 'tr'),\n pl: readLocale('intlayer_with_react-intl.md', 'pl'),\n id: readLocale('intlayer_with_react-intl.md', 'id'),\n vi: readLocale('intlayer_with_react-intl.md', 'vi'),\n uk: readLocale('intlayer_with_react-intl.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/intlayer_with_vue-i18n.md': {\n en: readLocale('intlayer_with_vue-i18n.md', 'en'),\n ru: readLocale('intlayer_with_vue-i18n.md', 'ru'),\n ja: readLocale('intlayer_with_vue-i18n.md', 'ja'),\n fr: readLocale('intlayer_with_vue-i18n.md', 'fr'),\n ko: readLocale('intlayer_with_vue-i18n.md', 'ko'),\n zh: readLocale('intlayer_with_vue-i18n.md', 'zh'),\n es: readLocale('intlayer_with_vue-i18n.md', 'es'),\n de: readLocale('intlayer_with_vue-i18n.md', 'de'),\n ar: readLocale('intlayer_with_vue-i18n.md', 'ar'),\n it: readLocale('intlayer_with_vue-i18n.md', 'it'),\n 'en-GB': readLocale('intlayer_with_vue-i18n.md', 'en-GB'),\n pt: readLocale('intlayer_with_vue-i18n.md', 'pt'),\n hi: readLocale('intlayer_with_vue-i18n.md', 'hi'),\n tr: readLocale('intlayer_with_vue-i18n.md', 'tr'),\n pl: readLocale('intlayer_with_vue-i18n.md', 'pl'),\n id: readLocale('intlayer_with_vue-i18n.md', 'id'),\n vi: readLocale('intlayer_with_vue-i18n.md', 'vi'),\n uk: readLocale('intlayer_with_vue-i18n.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/l10n_platform_alternative/Lokalise.md': {\n en: readLocale('l10n_platform_alternative/Lokalise.md', 'en'),\n ru: readLocale('l10n_platform_alternative/Lokalise.md', 'ru'),\n ja: readLocale('l10n_platform_alternative/Lokalise.md', 'ja'),\n fr: readLocale('l10n_platform_alternative/Lokalise.md', 'fr'),\n ko: readLocale('l10n_platform_alternative/Lokalise.md', 'ko'),\n zh: readLocale('l10n_platform_alternative/Lokalise.md', 'zh'),\n es: readLocale('l10n_platform_alternative/Lokalise.md', 'es'),\n de: readLocale('l10n_platform_alternative/Lokalise.md', 'de'),\n ar: readLocale('l10n_platform_alternative/Lokalise.md', 'ar'),\n it: readLocale('l10n_platform_alternative/Lokalise.md', 'it'),\n 'en-GB': readLocale('l10n_platform_alternative/Lokalise.md', 'en-GB'),\n pt: readLocale('l10n_platform_alternative/Lokalise.md', 'pt'),\n hi: readLocale('l10n_platform_alternative/Lokalise.md', 'hi'),\n tr: readLocale('l10n_platform_alternative/Lokalise.md', 'tr'),\n pl: readLocale('l10n_platform_alternative/Lokalise.md', 'pl'),\n id: readLocale('l10n_platform_alternative/Lokalise.md', 'id'),\n vi: readLocale('l10n_platform_alternative/Lokalise.md', 'vi'),\n uk: readLocale('l10n_platform_alternative/Lokalise.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/l10n_platform_alternative/crowdin.md': {\n en: readLocale('l10n_platform_alternative/crowdin.md', 'en'),\n ru: readLocale('l10n_platform_alternative/crowdin.md', 'ru'),\n ja: readLocale('l10n_platform_alternative/crowdin.md', 'ja'),\n fr: readLocale('l10n_platform_alternative/crowdin.md', 'fr'),\n ko: readLocale('l10n_platform_alternative/crowdin.md', 'ko'),\n zh: readLocale('l10n_platform_alternative/crowdin.md', 'zh'),\n es: readLocale('l10n_platform_alternative/crowdin.md', 'es'),\n de: readLocale('l10n_platform_alternative/crowdin.md', 'de'),\n ar: readLocale('l10n_platform_alternative/crowdin.md', 'ar'),\n it: readLocale('l10n_platform_alternative/crowdin.md', 'it'),\n 'en-GB': readLocale('l10n_platform_alternative/crowdin.md', 'en-GB'),\n pt: readLocale('l10n_platform_alternative/crowdin.md', 'pt'),\n hi: readLocale('l10n_platform_alternative/crowdin.md', 'hi'),\n tr: readLocale('l10n_platform_alternative/crowdin.md', 'tr'),\n pl: readLocale('l10n_platform_alternative/crowdin.md', 'pl'),\n id: readLocale('l10n_platform_alternative/crowdin.md', 'id'),\n vi: readLocale('l10n_platform_alternative/crowdin.md', 'vi'),\n uk: readLocale('l10n_platform_alternative/crowdin.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/l10n_platform_alternative/phrase.md': {\n en: readLocale('l10n_platform_alternative/phrase.md', 'en'),\n ru: readLocale('l10n_platform_alternative/phrase.md', 'ru'),\n ja: readLocale('l10n_platform_alternative/phrase.md', 'ja'),\n fr: readLocale('l10n_platform_alternative/phrase.md', 'fr'),\n ko: readLocale('l10n_platform_alternative/phrase.md', 'ko'),\n zh: readLocale('l10n_platform_alternative/phrase.md', 'zh'),\n es: readLocale('l10n_platform_alternative/phrase.md', 'es'),\n de: readLocale('l10n_platform_alternative/phrase.md', 'de'),\n ar: readLocale('l10n_platform_alternative/phrase.md', 'ar'),\n it: readLocale('l10n_platform_alternative/phrase.md', 'it'),\n 'en-GB': readLocale('l10n_platform_alternative/phrase.md', 'en-GB'),\n pt: readLocale('l10n_platform_alternative/phrase.md', 'pt'),\n hi: readLocale('l10n_platform_alternative/phrase.md', 'hi'),\n tr: readLocale('l10n_platform_alternative/phrase.md', 'tr'),\n pl: readLocale('l10n_platform_alternative/phrase.md', 'pl'),\n id: readLocale('l10n_platform_alternative/phrase.md', 'id'),\n vi: readLocale('l10n_platform_alternative/phrase.md', 'vi'),\n uk: readLocale('l10n_platform_alternative/phrase.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/CMS/drupal.md': {\n en: readLocale('list_i18n_technologies/CMS/drupal.md', 'en'),\n ru: readLocale('list_i18n_technologies/CMS/drupal.md', 'ru'),\n ja: readLocale('list_i18n_technologies/CMS/drupal.md', 'ja'),\n fr: readLocale('list_i18n_technologies/CMS/drupal.md', 'fr'),\n ko: readLocale('list_i18n_technologies/CMS/drupal.md', 'ko'),\n zh: readLocale('list_i18n_technologies/CMS/drupal.md', 'zh'),\n es: readLocale('list_i18n_technologies/CMS/drupal.md', 'es'),\n de: readLocale('list_i18n_technologies/CMS/drupal.md', 'de'),\n ar: readLocale('list_i18n_technologies/CMS/drupal.md', 'ar'),\n it: readLocale('list_i18n_technologies/CMS/drupal.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/CMS/drupal.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/CMS/drupal.md', 'pt'),\n hi: readLocale('list_i18n_technologies/CMS/drupal.md', 'hi'),\n tr: readLocale('list_i18n_technologies/CMS/drupal.md', 'tr'),\n pl: readLocale('list_i18n_technologies/CMS/drupal.md', 'pl'),\n id: readLocale('list_i18n_technologies/CMS/drupal.md', 'id'),\n vi: readLocale('list_i18n_technologies/CMS/drupal.md', 'vi'),\n uk: readLocale('list_i18n_technologies/CMS/drupal.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/CMS/wix.md': {\n en: readLocale('list_i18n_technologies/CMS/wix.md', 'en'),\n ru: readLocale('list_i18n_technologies/CMS/wix.md', 'ru'),\n ja: readLocale('list_i18n_technologies/CMS/wix.md', 'ja'),\n fr: readLocale('list_i18n_technologies/CMS/wix.md', 'fr'),\n ko: readLocale('list_i18n_technologies/CMS/wix.md', 'ko'),\n zh: readLocale('list_i18n_technologies/CMS/wix.md', 'zh'),\n es: readLocale('list_i18n_technologies/CMS/wix.md', 'es'),\n de: readLocale('list_i18n_technologies/CMS/wix.md', 'de'),\n ar: readLocale('list_i18n_technologies/CMS/wix.md', 'ar'),\n it: readLocale('list_i18n_technologies/CMS/wix.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/CMS/wix.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/CMS/wix.md', 'pt'),\n hi: readLocale('list_i18n_technologies/CMS/wix.md', 'hi'),\n tr: readLocale('list_i18n_technologies/CMS/wix.md', 'tr'),\n pl: readLocale('list_i18n_technologies/CMS/wix.md', 'pl'),\n id: readLocale('list_i18n_technologies/CMS/wix.md', 'id'),\n vi: readLocale('list_i18n_technologies/CMS/wix.md', 'vi'),\n uk: readLocale('list_i18n_technologies/CMS/wix.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/CMS/wordpress.md': {\n en: readLocale('list_i18n_technologies/CMS/wordpress.md', 'en'),\n ru: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ru'),\n ja: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ja'),\n fr: readLocale('list_i18n_technologies/CMS/wordpress.md', 'fr'),\n ko: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ko'),\n zh: readLocale('list_i18n_technologies/CMS/wordpress.md', 'zh'),\n es: readLocale('list_i18n_technologies/CMS/wordpress.md', 'es'),\n de: readLocale('list_i18n_technologies/CMS/wordpress.md', 'de'),\n ar: readLocale('list_i18n_technologies/CMS/wordpress.md', 'ar'),\n it: readLocale('list_i18n_technologies/CMS/wordpress.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/CMS/wordpress.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/CMS/wordpress.md', 'pt'),\n hi: readLocale('list_i18n_technologies/CMS/wordpress.md', 'hi'),\n tr: readLocale('list_i18n_technologies/CMS/wordpress.md', 'tr'),\n pl: readLocale('list_i18n_technologies/CMS/wordpress.md', 'pl'),\n id: readLocale('list_i18n_technologies/CMS/wordpress.md', 'id'),\n vi: readLocale('list_i18n_technologies/CMS/wordpress.md', 'vi'),\n uk: readLocale('list_i18n_technologies/CMS/wordpress.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/angular.md': {\n en: readLocale('list_i18n_technologies/frameworks/angular.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/angular.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/angular.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/angular.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/angular.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/angular.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/angular.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/angular.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/angular.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/angular.md', 'it'),\n 'en-GB': readLocale(\n 'list_i18n_technologies/frameworks/angular.md',\n 'en-GB'\n ),\n pt: readLocale('list_i18n_technologies/frameworks/angular.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/angular.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/angular.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/angular.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/angular.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/angular.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/angular.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/flutter.md': {\n en: readLocale('list_i18n_technologies/frameworks/flutter.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/flutter.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/flutter.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/flutter.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/flutter.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/flutter.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/flutter.md', 'it'),\n 'en-GB': readLocale(\n 'list_i18n_technologies/frameworks/flutter.md',\n 'en-GB'\n ),\n pt: readLocale('list_i18n_technologies/frameworks/flutter.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/flutter.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/flutter.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/flutter.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/flutter.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/flutter.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/flutter.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/react-native.md': {\n en: readLocale('list_i18n_technologies/frameworks/react-native.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/react-native.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/react-native.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/react-native.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/react-native.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/react-native.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/react-native.md', 'it'),\n 'en-GB': readLocale(\n 'list_i18n_technologies/frameworks/react-native.md',\n 'en-GB'\n ),\n pt: readLocale('list_i18n_technologies/frameworks/react-native.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/react-native.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/react-native.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/react-native.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/react-native.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/react-native.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/react-native.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/react.md': {\n en: readLocale('list_i18n_technologies/frameworks/react.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/react.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/react.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/react.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/react.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/react.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/react.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/react.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/react.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/react.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/frameworks/react.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/frameworks/react.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/react.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/react.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/react.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/react.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/react.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/react.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/svelte.md': {\n en: readLocale('list_i18n_technologies/frameworks/svelte.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/svelte.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/svelte.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/svelte.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/svelte.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/svelte.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/svelte.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/frameworks/svelte.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/frameworks/svelte.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/svelte.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/svelte.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/svelte.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/svelte.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/svelte.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/svelte.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/list_i18n_technologies/frameworks/vue.md': {\n en: readLocale('list_i18n_technologies/frameworks/vue.md', 'en'),\n ru: readLocale('list_i18n_technologies/frameworks/vue.md', 'ru'),\n ja: readLocale('list_i18n_technologies/frameworks/vue.md', 'ja'),\n fr: readLocale('list_i18n_technologies/frameworks/vue.md', 'fr'),\n ko: readLocale('list_i18n_technologies/frameworks/vue.md', 'ko'),\n zh: readLocale('list_i18n_technologies/frameworks/vue.md', 'zh'),\n es: readLocale('list_i18n_technologies/frameworks/vue.md', 'es'),\n de: readLocale('list_i18n_technologies/frameworks/vue.md', 'de'),\n ar: readLocale('list_i18n_technologies/frameworks/vue.md', 'ar'),\n it: readLocale('list_i18n_technologies/frameworks/vue.md', 'it'),\n 'en-GB': readLocale('list_i18n_technologies/frameworks/vue.md', 'en-GB'),\n pt: readLocale('list_i18n_technologies/frameworks/vue.md', 'pt'),\n hi: readLocale('list_i18n_technologies/frameworks/vue.md', 'hi'),\n tr: readLocale('list_i18n_technologies/frameworks/vue.md', 'tr'),\n pl: readLocale('list_i18n_technologies/frameworks/vue.md', 'pl'),\n id: readLocale('list_i18n_technologies/frameworks/vue.md', 'id'),\n vi: readLocale('list_i18n_technologies/frameworks/vue.md', 'vi'),\n uk: readLocale('list_i18n_technologies/frameworks/vue.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/next-i18next_vs_next-intl_vs_intlayer.md': {\n en: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'en'),\n ru: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ru'),\n ja: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ja'),\n fr: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'fr'),\n ko: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ko'),\n zh: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'zh'),\n es: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'es'),\n de: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'de'),\n ar: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'ar'),\n it: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'it'),\n 'en-GB': readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'en-GB'),\n pt: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'pt'),\n hi: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'hi'),\n tr: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'tr'),\n pl: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'pl'),\n id: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'id'),\n vi: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'vi'),\n uk: readLocale('next-i18next_vs_next-intl_vs_intlayer.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/nextjs-multilingual-seo-comparison.md': {\n en: readLocale('nextjs-multilingual-seo-comparison.md', 'en'),\n ru: readLocale('nextjs-multilingual-seo-comparison.md', 'ru'),\n ja: readLocale('nextjs-multilingual-seo-comparison.md', 'ja'),\n fr: readLocale('nextjs-multilingual-seo-comparison.md', 'fr'),\n ko: readLocale('nextjs-multilingual-seo-comparison.md', 'ko'),\n zh: readLocale('nextjs-multilingual-seo-comparison.md', 'zh'),\n es: readLocale('nextjs-multilingual-seo-comparison.md', 'es'),\n de: readLocale('nextjs-multilingual-seo-comparison.md', 'de'),\n ar: readLocale('nextjs-multilingual-seo-comparison.md', 'ar'),\n it: readLocale('nextjs-multilingual-seo-comparison.md', 'it'),\n 'en-GB': readLocale('nextjs-multilingual-seo-comparison.md', 'en-GB'),\n pt: readLocale('nextjs-multilingual-seo-comparison.md', 'pt'),\n hi: readLocale('nextjs-multilingual-seo-comparison.md', 'hi'),\n tr: readLocale('nextjs-multilingual-seo-comparison.md', 'tr'),\n pl: readLocale('nextjs-multilingual-seo-comparison.md', 'pl'),\n id: readLocale('nextjs-multilingual-seo-comparison.md', 'id'),\n vi: readLocale('nextjs-multilingual-seo-comparison.md', 'vi'),\n uk: readLocale('nextjs-multilingual-seo-comparison.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/per-component_vs_centralized_i18n.md': {\n en: readLocale('per-component_vs_centralized_i18n.md', 'en'),\n ru: readLocale('per-component_vs_centralized_i18n.md', 'ru'),\n ja: readLocale('per-component_vs_centralized_i18n.md', 'ja'),\n fr: readLocale('per-component_vs_centralized_i18n.md', 'fr'),\n ko: readLocale('per-component_vs_centralized_i18n.md', 'ko'),\n zh: readLocale('per-component_vs_centralized_i18n.md', 'zh'),\n es: readLocale('per-component_vs_centralized_i18n.md', 'es'),\n de: readLocale('per-component_vs_centralized_i18n.md', 'de'),\n ar: readLocale('per-component_vs_centralized_i18n.md', 'ar'),\n it: readLocale('per-component_vs_centralized_i18n.md', 'it'),\n 'en-GB': readLocale('per-component_vs_centralized_i18n.md', 'en-GB'),\n pt: readLocale('per-component_vs_centralized_i18n.md', 'pt'),\n hi: readLocale('per-component_vs_centralized_i18n.md', 'hi'),\n tr: readLocale('per-component_vs_centralized_i18n.md', 'tr'),\n pl: readLocale('per-component_vs_centralized_i18n.md', 'pl'),\n id: readLocale('per-component_vs_centralized_i18n.md', 'id'),\n vi: readLocale('per-component_vs_centralized_i18n.md', 'vi'),\n uk: readLocale('per-component_vs_centralized_i18n.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/rag_powered_documentation_assistant.md': {\n en: readLocale('rag_powered_documentation_assistant.md', 'en'),\n ru: readLocale('rag_powered_documentation_assistant.md', 'ru'),\n ja: readLocale('rag_powered_documentation_assistant.md', 'ja'),\n fr: readLocale('rag_powered_documentation_assistant.md', 'fr'),\n ko: readLocale('rag_powered_documentation_assistant.md', 'ko'),\n zh: readLocale('rag_powered_documentation_assistant.md', 'zh'),\n es: readLocale('rag_powered_documentation_assistant.md', 'es'),\n de: readLocale('rag_powered_documentation_assistant.md', 'de'),\n ar: readLocale('rag_powered_documentation_assistant.md', 'ar'),\n it: readLocale('rag_powered_documentation_assistant.md', 'it'),\n 'en-GB': readLocale('rag_powered_documentation_assistant.md', 'en-GB'),\n pt: readLocale('rag_powered_documentation_assistant.md', 'pt'),\n hi: readLocale('rag_powered_documentation_assistant.md', 'hi'),\n tr: readLocale('rag_powered_documentation_assistant.md', 'tr'),\n pl: readLocale('rag_powered_documentation_assistant.md', 'pl'),\n id: readLocale('rag_powered_documentation_assistant.md', 'id'),\n vi: readLocale('rag_powered_documentation_assistant.md', 'vi'),\n uk: readLocale('rag_powered_documentation_assistant.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/react-i18next_vs_react-intl_vs_intlayer.md': {\n en: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'en'),\n ru: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ru'),\n ja: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ja'),\n fr: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'fr'),\n ko: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ko'),\n zh: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'zh'),\n es: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'es'),\n de: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'de'),\n ar: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'ar'),\n it: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'it'),\n 'en-GB': readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'en-GB'),\n pt: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'pt'),\n hi: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'hi'),\n tr: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'tr'),\n pl: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'pl'),\n id: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'id'),\n vi: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'vi'),\n uk: readLocale('react-i18next_vs_react-intl_vs_intlayer.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/vue-i18n_vs_intlayer.md': {\n en: readLocale('vue-i18n_vs_intlayer.md', 'en'),\n ru: readLocale('vue-i18n_vs_intlayer.md', 'ru'),\n ja: readLocale('vue-i18n_vs_intlayer.md', 'ja'),\n fr: readLocale('vue-i18n_vs_intlayer.md', 'fr'),\n ko: readLocale('vue-i18n_vs_intlayer.md', 'ko'),\n zh: readLocale('vue-i18n_vs_intlayer.md', 'zh'),\n es: readLocale('vue-i18n_vs_intlayer.md', 'es'),\n de: readLocale('vue-i18n_vs_intlayer.md', 'de'),\n ar: readLocale('vue-i18n_vs_intlayer.md', 'ar'),\n it: readLocale('vue-i18n_vs_intlayer.md', 'it'),\n 'en-GB': readLocale('vue-i18n_vs_intlayer.md', 'en-GB'),\n pt: readLocale('vue-i18n_vs_intlayer.md', 'pt'),\n hi: readLocale('vue-i18n_vs_intlayer.md', 'hi'),\n tr: readLocale('vue-i18n_vs_intlayer.md', 'tr'),\n pl: readLocale('vue-i18n_vs_intlayer.md', 'pl'),\n id: readLocale('vue-i18n_vs_intlayer.md', 'id'),\n vi: readLocale('vue-i18n_vs_intlayer.md', 'vi'),\n uk: readLocale('vue-i18n_vs_intlayer.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n './blog/en/what_is_internationalization.md': {\n en: readLocale('what_is_internationalization.md', 'en'),\n ru: readLocale('what_is_internationalization.md', 'ru'),\n ja: readLocale('what_is_internationalization.md', 'ja'),\n fr: readLocale('what_is_internationalization.md', 'fr'),\n ko: readLocale('what_is_internationalization.md', 'ko'),\n zh: readLocale('what_is_internationalization.md', 'zh'),\n es: readLocale('what_is_internationalization.md', 'es'),\n de: readLocale('what_is_internationalization.md', 'de'),\n ar: readLocale('what_is_internationalization.md', 'ar'),\n it: readLocale('what_is_internationalization.md', 'it'),\n 'en-GB': readLocale('what_is_internationalization.md', 'en-GB'),\n pt: readLocale('what_is_internationalization.md', 'pt'),\n hi: readLocale('what_is_internationalization.md', 'hi'),\n tr: readLocale('what_is_internationalization.md', 'tr'),\n pl: readLocale('what_is_internationalization.md', 'pl'),\n id: readLocale('what_is_internationalization.md', 'id'),\n vi: readLocale('what_is_internationalization.md', 'vi'),\n uk: readLocale('what_is_internationalization.md', 'uk'),\n } as unknown as Record<LocalesValues, Promise<string>>,\n} as const;\n"],"mappings":"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"}