feat(localization): add i18next extraction helper & refactor backup configuration component to tsx

This commit is contained in:
PiR1
2026-05-09 18:23:12 +02:00
parent 86ee6c80aa
commit e7228b0780
20 changed files with 2093 additions and 517 deletions
+4 -1
View File
@@ -1,4 +1,6 @@
import { defineConfig } from 'i18next-cli';
import { typescriptPlugin } from "./scripts/i18nextExtractionHelper";
export default defineConfig({
locales: ['en', 'de', 'nl', 'pt', 'ru', 'fr'],
@@ -18,6 +20,7 @@ export default defineConfig({
preserveContextVariants: true,
indentation: 2,
sort:false
sort: false,
},
plugins: [typescriptPlugin(["./src/App.tsx"]) ]
});