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:
33
client/src/i18n/index.js
Normal file
33
client/src/i18n/index.js
Normal 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;
|
||||
|
||||
Reference in New Issue
Block a user