Czech language update

This commit is contained in:
Petr Branberger
2023-05-10 15:48:36 +02:00
parent 28a49827ff
commit c4210be3c7
12 changed files with 87 additions and 15 deletions

View File

@@ -8,6 +8,7 @@ import JP from "./jp";
import DE from "./de";
import VI from "./vi";
import RU from "./ru";
import CS from "./cs";
export type { LocaleType } from "./cn";
@@ -22,6 +23,7 @@ export const AllLangs = [
"de",
"vi",
"ru",
"cs",
] as const;
export type Lang = (typeof AllLangs)[number];
@@ -85,4 +87,5 @@ export default {
de: DE,
vi: VI,
ru: RU,
cs: CS,
}[getLang()] as typeof CN;