Add src/i18n.ts

This commit is contained in:
2026-05-31 22:49:32 +00:00
parent c386ddc195
commit 5819abbc65

6
src/i18n.ts Normal file
View File

@@ -0,0 +1,6 @@
export const i18n = {
defaultLocale: 'en',
locales: ['en', 'ar'],
} as const;
export type Locale = (typeof i18n)['locales'][number];