changed directory structure of js and Vue files; added plugin for translation (can try it in settings)

This commit is contained in:
Roberto Tonino
2020-07-17 00:11:28 +02:00
parent 1a300a6b1b
commit 42e44c45fe
35 changed files with 163 additions and 69 deletions

15
src/lang/en.js Normal file
View File

@@ -0,0 +1,15 @@
const en = {
welcome: 'Welcome to deemix',
settings: {
title: 'Settings',
languages: 'Languages',
login: {
arl: {
question: 'How do I get my own ARL?',
update: 'Update ARL'
}
}
}
}
export default en

15
src/lang/it.js Normal file
View File

@@ -0,0 +1,15 @@
const it = {
welcome: 'Benvenuto su deemix',
settings: {
title: 'Impostazioni',
languages: 'Lingue',
login: {
arl: {
question: 'Come ottengo il mio ARL?',
update: 'Aggiorna ARL'
}
}
}
}
export default it