2020-07-16 22:11:28 +00:00
|
|
|
import Vue from 'vue'
|
|
|
|
import VueI18n from 'vue-i18n'
|
|
|
|
|
|
|
|
// Languages
|
|
|
|
import it from '@/lang/it'
|
|
|
|
import en from '@/lang/en'
|
2020-07-29 12:53:10 +00:00
|
|
|
import es from '@/lang/es'
|
2020-07-16 22:11:28 +00:00
|
|
|
|
|
|
|
Vue.use(VueI18n)
|
|
|
|
|
|
|
|
const DEFAULT_LANG = 'en'
|
|
|
|
|
|
|
|
document.querySelector('html').setAttribute('lang', DEFAULT_LANG)
|
|
|
|
|
|
|
|
const locales = {
|
|
|
|
it,
|
2020-07-29 12:53:10 +00:00
|
|
|
en,
|
|
|
|
es
|
2020-07-16 22:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const i18n = new VueI18n({
|
|
|
|
locale: DEFAULT_LANG,
|
|
|
|
fallbackLocale: DEFAULT_LANG,
|
|
|
|
messages: locales
|
|
|
|
})
|
|
|
|
|
|
|
|
export default i18n
|