2025-09-08 23:19:41 +07:00

13 lines
218 B
TypeScript

export const i18n = {
defaultLocale: 'en',
locales: ['en', 'id'],
langDirection: {
en: 'ltr',
fr: 'ltr',
id: 'ltr',
ar: 'rtl'
}
} as const
export type Locale = (typeof i18n)['locales'][number]