feat: Add chs language support.

This commit is contained in:
2025-12-14 03:09:29 +09:00
parent 0629ffc3bc
commit 4d3bb6cfd8
3 changed files with 160 additions and 0 deletions
+2
View File
@@ -1,9 +1,11 @@
import { en } from './locales/en';
import { es } from './locales/es';
import { zh as chs } from './locales/zh';
export const translations = {
en,
es,
chs,
};
export type Language = keyof typeof translations;