mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-05 20:13:23 -05:00
16 lines
346 B
JavaScript
16 lines
346 B
JavaScript
|
import { createI18n } from 'vue-i18n'
|
||
|
|
||
|
/*
|
||
|
* All i18n resources specified in the plugin `include` option can be loaded
|
||
|
* at once using the import syntax.
|
||
|
*/
|
||
|
import messages from '@intlify/vite-plugin-vue-i18n/messages'
|
||
|
|
||
|
export default createI18n({
|
||
|
legacy: false,
|
||
|
globalInjection: true,
|
||
|
locale: 'en',
|
||
|
fallbackLocale: 'en',
|
||
|
messages
|
||
|
})
|