Update translation.ts

This commit is contained in:
Jehian
2025-07-29 09:31:32 +07:00
committed by GitHub
parent 4f94e03277
commit 2678d9e421

View File

@@ -2,6 +2,7 @@ import { siteConfig } from "../config";
import type I18nKey from "./i18nKey";
import { en } from "./languages/en";
import { es } from "./languages/es";
import { id } from "./languages/id";
import { ja } from "./languages/ja";
import { ko } from "./languages/ko";
import { th } from "./languages/th";
@@ -31,6 +32,7 @@ const map: { [key: string]: Translation } = {
th_th: th,
vi: vi,
vi_vn: vi,
id: id,
};
export function getTranslation(lang: string): Translation {