Remove deprecated scripts for adding head-matter to wt_config.xml, including Python and Bash implementations, to streamline configuration management.

This commit is contained in:
Torsten Schulz (local)
2025-12-04 16:34:45 +01:00
parent 4b674c7c60
commit 6e9116e819
13187 changed files with 1493219 additions and 337 deletions

33
client/src/i18n/index.js Normal file
View File

@@ -0,0 +1,33 @@
import { createI18n } from 'vue-i18n';
import de from './locales/de.json';
import en from './locales/en.json';
import fr from './locales/fr.json';
import es from './locales/es.json';
import it from './locales/it.json';
import ja from './locales/ja.json';
import zh from './locales/zh.json';
import th from './locales/th.json';
import tl from './locales/tl.json';
const messages = {
de,
en,
fr,
es,
it,
ja,
zh,
th,
tl
};
const i18n = createI18n({
legacy: false,
locale: 'de',
fallbackLocale: 'de',
messages,
allowComposition: true
});
export default i18n;