2024-02-24 16:46:14 +00:00
|
|
|
import {
|
|
|
|
currentLocales,
|
|
|
|
datetimeFormats,
|
|
|
|
numberFormats,
|
|
|
|
pluralRules,
|
|
|
|
} from './i18n'
|
|
|
|
|
|
|
|
export default defineI18nConfig(() => {
|
|
|
|
return {
|
|
|
|
legacy: false,
|
|
|
|
availableLocales: currentLocales.map(l => l.code),
|
|
|
|
fallbackLocale: 'en-US',
|
|
|
|
fallbackWarn: true,
|
|
|
|
missingWarn: true,
|
|
|
|
datetimeFormats,
|
|
|
|
numberFormats,
|
2024-03-05 14:48:58 +00:00
|
|
|
pluralRules,
|
2024-02-24 16:46:14 +00:00
|
|
|
}
|
|
|
|
})
|