Initial Release

This commit is contained in:
Tola Leng
2025-05-09 21:28:07 +07:00
commit 0c6cd18e6f
244 changed files with 50633 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { enTranslations } from './en';
import { kmTranslations } from './km';
export type Language = "en" | "km";
export const translations = {
en: enTranslations,
km: kmTranslations,
};
export type TranslationKey = keyof typeof enTranslations;