feat: Implement i18n infrastructure

This commit is contained in:
2025-12-13 17:29:27 +09:00
parent 2fc8a32b5f
commit cae08acab3
10 changed files with 578 additions and 166 deletions
+10
View File
@@ -0,0 +1,10 @@
import { en } from './locales/en';
import { es } from './locales/es';
export const translations = {
en,
es,
};
export type Language = keyof typeof translations;
export type TranslationStructure = typeof en;