Update translations
This commit is contained in:
parent
74fc4a384f
commit
583f6c876b
@ -12,8 +12,8 @@
|
|||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
return {
|
return {
|
||||||
langs: ['en-US', 'es-ES'],
|
langs: ['en-US', 'es-ES', 'nl-NL', 'pt-PT'],
|
||||||
names: ['English', 'Español']
|
names: ['English', 'Español', 'Nederlands', 'Português']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import { createI18n } from 'vue-i18n'
|
import { createI18n } from 'vue-i18n'
|
||||||
import en from '@/locales/en.json'
|
import en from '@/locales/en.json'
|
||||||
import es from '@/locales/es.json'
|
import es from '@/locales/es.json'
|
||||||
|
import nl from '@/locales/nl.json'
|
||||||
|
import pt from '@/locales/pt.json'
|
||||||
|
|
||||||
export default createI18n({
|
export default createI18n({
|
||||||
legacy: false,
|
legacy: false,
|
||||||
@ -9,6 +11,8 @@ export default createI18n({
|
|||||||
globalInjection: true,
|
globalInjection: true,
|
||||||
messages: {
|
messages: {
|
||||||
'en-US': en,
|
'en-US': en,
|
||||||
'es-ES': es
|
'es-ES': es,
|
||||||
|
'nl-NL': nl,
|
||||||
|
'pt-PT': pt,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 98ca80706227ed2e78d81d8ea7f4a86fd9baf83f
|
Subproject commit 8c0cd5f9d57458f207e482c029f3afc4f6c2b7d5
|
Loading…
x
Reference in New Issue
Block a user