12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
|
|
export const i18n = {
|
||
|
|
defaultLocale: 'en',
|
||
|
|
locales: ['en', 'fr', 'ar'],
|
||
|
|
langDirection: {
|
||
|
|
en: 'ltr',
|
||
|
|
fr: 'ltr',
|
||
|
|
ar: 'rtl'
|
||
|
|
}
|
||
|
|
} as const
|
||
|
|
|
||
|
|
export type Locale = (typeof i18n)['locales'][number]
|