2025-08-05 12:35:40 +07:00
|
|
|
export const i18n = {
|
|
|
|
|
defaultLocale: 'en',
|
2025-09-08 23:19:41 +07:00
|
|
|
locales: ['en', 'id'],
|
2025-08-05 12:35:40 +07:00
|
|
|
langDirection: {
|
|
|
|
|
en: 'ltr',
|
|
|
|
|
fr: 'ltr',
|
2025-09-08 23:19:41 +07:00
|
|
|
id: 'ltr',
|
2025-08-05 12:35:40 +07:00
|
|
|
ar: 'rtl'
|
|
|
|
|
}
|
|
|
|
|
} as const
|
|
|
|
|
|
|
|
|
|
export type Locale = (typeof i18n)['locales'][number]
|