i18n implementation into invoice module

This commit is contained in:
Peter Papp
2021-05-07 11:32:48 +02:00
parent 070f8b4d40
commit 73672bc023
31 changed files with 431 additions and 299 deletions

View File

@@ -7,7 +7,7 @@
{{ directoryName }}
</MobileActionButton>
<MobileActionButton @click.native="createButton" icon="file-plus">
Create
{{ $t('create') }}
</MobileActionButton>
<MobileActionButton @click.native="showViewOptions" icon="th-list">
{{ $t('preview_sorting.preview_sorting_button') }}
@@ -24,7 +24,7 @@
import {events} from '@/bus'
export default {
name: 'FileActionsMobile',
name: 'InvoiceActionsMobile',
components: {
MobileActionButtonUpload,
MobileActionButton,
@@ -37,7 +37,7 @@
directoryName() {
return this.currentFolder
? this.currentFolder.name
: 'Invoices'
: this.$t('in.nav.invoices')
},
},
data() {