From dba47c7b5892faa414afc74e53ce9a74d3c0cb98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karsten=20Ku=CC=88pper?= Date: Tue, 23 Jan 2024 12:13:29 -0500 Subject: [PATCH] remove deleted languages from config --- i18n.config.ts | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/i18n.config.ts b/i18n.config.ts index a788b72c..20d5bb68 100644 --- a/i18n.config.ts +++ b/i18n.config.ts @@ -1,56 +1,14 @@ -import af from "./locales/af.json"; -import bg from "./locales/bg.json"; -import cs from "./locales/cs.json"; -import da from "./locales/da.json"; import de from "./locales/de.json"; -import el from "./locales/el.json"; import en from "./locales/en.json"; -import es from "./locales/es.json"; -import et from "./locales/et.json"; -import fi from "./locales/fi.json"; -import fr from "./locales/fr.json"; -import he from "./locales/he.json"; -import hr from "./locales/hr.json"; -import hu from "./locales/hu.json"; -import it from "./locales/it.json"; import nb from "./locales/nb.json"; import nl from "./locales/nl.json"; -import pl from "./locales/pl.json"; -import pt from "./locales/pt.json"; -import ro from "./locales/ro.json"; -import ru from "./locales/ru.json"; -import sl from "./locales/sl.json"; -import tr from "./locales/tr.json"; -import uk from "./locales/uk.json"; -import zh from "./locales/zh.json"; export default defineI18nConfig(() => ({ legacy: false, messages: { - af, - bg, - cs, - da, de, - el, en, - es, - et, - fi, - fr, - he, - hr, - hu, - it, nb, nl, - pl, - pt, - ro, - ru, - sl, - tr, - uk, - zh, }, }));