mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
16 lines
345 B
JavaScript
Vendored
16 lines
345 B
JavaScript
Vendored
import Vue from 'vue'
|
|
import VueInternationalization from 'vue-i18n';
|
|
import Locale from './vue-i18n-locales.generated';
|
|
|
|
|
|
Vue.use(VueInternationalization);
|
|
|
|
// const lang = document.documentElement.lang.substr(0, 2);
|
|
const lang = 'en';
|
|
|
|
const i18n = new VueInternationalization({
|
|
locale: lang,
|
|
messages: Locale
|
|
});
|
|
|
|
export default i18n |