-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce77c56
commit c911000
Showing
2 changed files
with
54 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,47 @@ | ||
import enUS from "./lang/en-US.json" | ||
//If you take this out of alphabetical order I will eat you | ||
|
||
import arSA from "./lang/ar-SA.json" | ||
import deDE from "./lang/de-DE.json" | ||
import enPT from "./lang/en-PT.json" | ||
import lolUS from "./lang/lol-US.json" | ||
import enUD from "./lang/en-UD.json" | ||
import ruRU from "./lang/ru-RU.json" | ||
import deDE from "./lang/de-DE.json" | ||
import enUS from "./lang/en-US.json" | ||
import esES from "./lang/es-ES.json" | ||
import plPL from "./lang/pl-PL.json" | ||
import huHU from "./lang/hu-HU.json" | ||
import jaJP from "./lang/ja-JP.json" | ||
import lolUS from "./lang/lol-US.json" | ||
import noNO from "./lang/no-NO.json" | ||
import ptPT from "./lang/pt-PT.json" | ||
import plPL from "./lang/pl-PL.json" | ||
import ptBR from "./lang/pt-BR.json" | ||
import ptPT from "./lang/pt-PT.json" | ||
import ruRU from "./lang/ru-RU.json" | ||
import ukUA from "./lang/uk-UA.json" | ||
import huHU from "./lang/hu-HU.json" | ||
import viVN from "./lang/vi-VN.json" | ||
import zhTW from "./lang/zh-TW.json" | ||
import zhCN from "./lang/zh-CN.json" | ||
import zhTW from "./lang/zh-TW.json" | ||
|
||
export default defineI18nConfig(() => ({ | ||
legacy: false, | ||
fallbackLocale: "en-US", | ||
locale: "en-US", | ||
messages: { | ||
"en-US": enUS, | ||
//If you take this out of alphabetical order I will eat you again | ||
"ar-SA": arSA, | ||
"de-DE": deDE, | ||
"en-PT": enPT, | ||
"en-UD": enUD, | ||
"en-LOL": lolUS, | ||
"ru-RU": ruRU, | ||
"de-DE": deDE, | ||
"en-US": enUS, | ||
"es-ES": esES, | ||
"pl-PL": plPL, | ||
"hu-HU": huHU, | ||
"ja-JP": jaJP, | ||
"en-LOL": lolUS, | ||
"no-NO": noNO, | ||
"pt-PT": ptPT, | ||
"pl-PL": plPL, | ||
"pt-BR": ptBR, | ||
"pt-PT": ptPT, | ||
"ru-RU": ruRU, | ||
"uk-UA": ukUA, | ||
"hu-HU": huHU, | ||
"vi-VN": viVN, | ||
"zh-TW": zhTW, | ||
"zh-CN": zhCN, | ||
"zh-TW": zhTW, | ||
}, | ||
})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters