mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-13 21:02:56 +08:00
This PR adds missing internationalization (i18n) to several UI components that previously used hardcoded English text. The changes span multiple sections of the app. By replacing static strings with translation keys, a more consistent and localized user experience is ensured. --------- Co-authored-by: Baptiste Arnaud <baptiste.arnaud95@gmail.com>
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.tabSize": 2,
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.preferences.autoImportFileExcludePatterns": [
|
|
"next/router.d.ts",
|
|
"next/dist/client/router.d.ts"
|
|
],
|
|
"biome.enabled": true,
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[css]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"quickfix.biome": "explicit",
|
|
"source.organizeImports.biome": "explicit"
|
|
},
|
|
"eslint.enable": false,
|
|
"npm.packageManager": "bun",
|
|
"i18n-ally.localesPaths": ["apps/builder/src/i18n"],
|
|
"i18n-ally.keystyle": "flat",
|
|
"i18n-ally.displayLanguage": "en",
|
|
"i18n-ally.sortKeys": true,
|
|
"i18n-ally.enabledFrameworks": ["custom"]
|
|
}
|