Add translations (#562)
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/562 Co-authored-by: konrad <konrad@kola-entertainments.de> Co-committed-by: konrad <konrad@kola-entertainments.de>
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="content">
|
||||
<h1>Import your data from other services to Vikunja</h1>
|
||||
<p>Click on the logo of one of the third-party services below to get started.</p>
|
||||
<h1>{{ $t('migrate.title') }}</h1>
|
||||
<p>{{ $t('migrate.description') }}</p>
|
||||
<div class="migration-services-overview">
|
||||
<router-link :key="m" :to="{name: 'migrate.service', params: {service: m}}" v-for="m in availableMigrators">
|
||||
<img :alt="m" :src="`/images/migration/${m}.png`"/>
|
||||
@ -15,7 +15,7 @@
|
||||
export default {
|
||||
name: 'migrate.service',
|
||||
mounted() {
|
||||
this.setTitle('Import your data to Vikunja')
|
||||
this.setTitle(this.$t('migrate.title'))
|
||||
},
|
||||
computed: {
|
||||
availableMigrators() {
|
||||
|
@ -21,7 +21,7 @@ export default {
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.setTitle(`Import your data from ${this.name} into Vikunja`)
|
||||
this.setTitle(this.$t('migrate.titleService', {name: this.name}))
|
||||
},
|
||||
created() {
|
||||
switch (this.$route.params.service) {
|
||||
|
Reference in New Issue
Block a user