fix i18n in emails

This commit is contained in:
lesion 2019-07-03 17:50:53 +02:00
parent ba23cadba3
commit 2dc5754da8
3 changed files with 9 additions and 3 deletions

View file

@ -47,7 +47,8 @@ const it = {
cancel: 'Annulla',
enable: 'Abilita',
disable: 'Disabilita',
me: 'Sei te'
me: 'Sei te',
password_updated: 'Password modificata!'
},
login: {
@ -60,6 +61,10 @@ const it = {
ok: 'Tutto rego'
},
recover: {
not_valid_code: 'Mmmmm qualcosa è andato storto...'
},
export: {
intro: `Contrariamente alle piattaforme del capitalismo, che fanno di tutto per tenere
i dati e gli utenti al loro interno, crediamo che le informazioni, come le persone,

View file

@ -39,8 +39,9 @@ export default {
Message({
showClose: true,
type: 'success',
message: this.$t('Password changed!')
message: this.$t('common.password_updated')
})
this.$router.replace('/login')
} catch(e) {
Message({
showClose: true,

View file

@ -27,7 +27,7 @@ const mail = {
syncFiles: false,
updateFiles: false,
defaultLocale: settings.locale,
objectNotation: true
locales: ['en', 'it']
},
transport: config.smtp
})