From 2678d9e4212e4985a380e0dc0e500cbda6acc5ca Mon Sep 17 00:00:00 2001 From: Jehian <166832786+send0moka@users.noreply.github.com> Date: Tue, 29 Jul 2025 09:31:32 +0700 Subject: [PATCH] Update translation.ts --- src/i18n/translation.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/i18n/translation.ts b/src/i18n/translation.ts index 35e1db94..00a68702 100644 --- a/src/i18n/translation.ts +++ b/src/i18n/translation.ts @@ -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 {