mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-16 13:36:33 +00:00
13 lines
338 B
TypeScript
13 lines
338 B
TypeScript
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||
|
// @ts-ignore
|
||
|
import messages from '@intlify/vite-plugin-vue-i18n/messages';
|
||
|
import { createI18n } from 'vue-i18n';
|
||
|
|
||
|
export const i18n = createI18n({
|
||
|
locale: navigator.language.split('-')[0],
|
||
|
legacy: false,
|
||
|
globalInjection: true,
|
||
|
fallbackLocale: 'en',
|
||
|
messages,
|
||
|
});
|