13 lines
218 B
TypeScript
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]
|