Files
sim/apps/docs/i18n.json
Waleed d325fdde6c fix(i18n): exclude SDK files from automatic translation to prevent corruption (#1634)
* fix(i18n): exclude SDK files from automatic translation to prevent corruption

* fix(i18n): temporarily disable auto-translate action while fixing translation corruption

* disable i18n action
2025-10-14 19:09:19 -07:00

19 lines
400 B
JSON

{
"$schema": "https://lingo.dev/schema/i18n.json",
"version": 1.8,
"locale": {
"source": "en",
"targets": ["es", "fr", "zh", "ja", "de"]
},
"buckets": {
"mdx": {
"include": [
"content/docs/[locale]/*.mdx",
"content/docs/[locale]/*/*.mdx",
"content/docs/[locale]/*/*/*.mdx"
],
"exclude": ["content/docs/[locale]/sdks/*.mdx"]
}
}
}