From ae179493b35e915836050e6128c1d94b7ca081f1 Mon Sep 17 00:00:00 2001 From: worldwidepixel <58098422+worldwidepixel@users.noreply.github.com> Date: Fri, 12 Jul 2024 11:59:17 -0700 Subject: [PATCH] Add new languages to testing --- i18n/i18n.config.ts | 4 ++++ nuxt.config.ts | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/i18n/i18n.config.ts b/i18n/i18n.config.ts index 48a3fd6..d908fbf 100644 --- a/i18n/i18n.config.ts +++ b/i18n/i18n.config.ts @@ -1,4 +1,6 @@ import enUS from "./lang/en-US.json" +import enLOL from "./lang/lol.json" +import enUD from "./lang/en-UD.json" import ruRU from "./lang/ru.json" import deDE from "./lang/de.json" import esES from "./lang/es-ES.json" @@ -11,6 +13,8 @@ export default defineI18nConfig(() => ({ locale: "en", messages: { en: enUS, + "en-UD": enUD, + "en-LOL": enLOL, ru: ruRU, de: deDE, "es-ES": esES, diff --git a/nuxt.config.ts b/nuxt.config.ts index f0252ce..506cbf3 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -28,6 +28,14 @@ export default defineNuxtConfig({ code: "en", name: "English (US)", }, + { + code: "en-LOL", + name: "LOLCAT (Kingdom of Cats)", + }, + { + code: "en-UD", + name: "English (Upside-down)", + }, { code: "ru", name: "русский (Russia)",