feat: Add cht language support.

This commit is contained in:
2025-12-14 03:52:35 +09:00
parent 575d1a7008
commit e1208420a0
3 changed files with 169 additions and 0 deletions
+2
View File
@@ -1,11 +1,13 @@
import { en } from './locales/en';
import { es } from './locales/es';
import { zh as chs } from './locales/zh';
import { cht } from './locales/cht';
export const translations = {
en,
es,
chs,
cht,
};
export type Language = keyof typeof translations;