mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-01 01:53:23 -05:00
4f848948e7
German translation Co-authored-by: lordmyschkin <martin@dieroths.at>
19 lines
443 B
JavaScript
19 lines
443 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,
|
|
availableLocales: ('de','en','fr'),
|
|
locale: navigator.language,
|
|
fallbackLocale: 'en',
|
|
fallbackWarn: false,
|
|
missingWarn: false,
|
|
messages
|
|
})
|