Add some missing translations

This commit is contained in:
Florian Gareis
2021-03-21 00:38:27 +01:00
parent 49a6e03e9d
commit 454ad3091a
17 changed files with 84 additions and 6 deletions

View File

@ -202,7 +202,7 @@
<template slot-scope="row">
<span>{{ $t('payments.payment_mode') }}</span>
<span>
{{ row.payment_mode ? row.payment_mode : 'Not selected' }}
{{ row.payment_mode ? row.payment_mode : $t('payments.not_selected') }}
</span>
</template>
</sw-table-column>
@ -216,7 +216,7 @@
<template slot-scope="row">
<span>{{ $t('invoices.invoice_number') }}</span>
<span>
{{ row.invoice_number ? row.invoice_number : 'No Invoice' }}
{{ row.invoice_number ? row.invoice_number : $t('payments.no_invoice') }}
</span>
</template>
</sw-table-column>