This commit is contained in:
pBrambi
2023-04-20 19:26:31 +02:00
parent 35ccfb14c2
commit 6a74d62e98
9 changed files with 11 additions and 0 deletions
+3
View File
@@ -6,6 +6,7 @@ import IT from "./it";
import TR from "./tr";
import JP from "./jp";
import DE from "./de";
import DE from "./cs";
export type { LocaleType } from "./cn";
@@ -18,6 +19,7 @@ export const AllLangs = [
"tr",
"jp",
"de",
"cs",
] as const;
type Lang = (typeof AllLangs)[number];
@@ -77,4 +79,5 @@ export default {
tr: TR,
jp: JP,
de: DE,
cs: CS,
}[getLang()] as typeof CN;