Add Vietnamese translation

This commit is contained in:
Binh Le
2023-05-07 14:54:09 +07:00
parent 8265436437
commit f6ff32f339
10 changed files with 252 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import IT from "./it";
import TR from "./tr";
import JP from "./jp";
import DE from "./de";
import VI from "./vi";
export type { LocaleType } from "./cn";
@@ -18,6 +19,7 @@ export const AllLangs = [
"tr",
"jp",
"de",
"vi",
] as const;
export type Lang = (typeof AllLangs)[number];
@@ -79,4 +81,5 @@ export default {
tr: TR,
jp: JP,
de: DE,
vi: VI,
}[getLang()] as typeof CN;