commerce/i18n-config.ts
2023-07-07 11:46:16 +02:00

15 lines
230 B
TypeScript

export const i18n = {
defaultLocale: 'sv',
locales: [
{
id: 'sv',
title: 'Swedish'
},
{
id: 'en',
title: 'English'
}
],
} as const
export type Locale = typeof i18n['locales'][number]