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

@ -195,7 +195,7 @@
<template slot-scope="row">
<span>{{ $t('customers.contact_name') }}</span>
<span>
{{ row.contact_name ? row.contact_name : 'No Contact Name' }}
{{ row.contact_name ? row.contact_name : $t('customers.no_contact_name') }}
</span>
</template>
</sw-table-column>
@ -208,7 +208,7 @@
<template slot-scope="row">
<span>{{ $t('customers.phone') }}</span>
<span>
{{ row.phone ? row.phone : 'No Contact' }}
{{ row.phone ? row.phone : $t('customers.no_contact') }}
</span>
</template>
</sw-table-column>