Merge pull request #1955 from burakcakirel/tax_number_translation

tax_number language text not translated in the invoice's company section
This commit is contained in:
Denis Duliçi 2021-03-26 14:37:06 +03:00 committed by GitHub
commit 8075454cb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
</tr>
<tr v-if="company.tax_number">
<th class="text-right p-0">
{{ 'general.tax_number' }}: {{ company.tax_number }}
{{ taxNumberText }}: {{ company.tax_number }}
</th>
</tr>
<tr v-if="company.phone">
@ -74,11 +74,11 @@ export default {
default: 'Edit your business address ',
description: 'Input placeholder'
},
taxNumberTax: {
taxNumberText: {
type: String,
default: 'Tax Number',
description: 'Input placeholder'
},
},
companyId: {
type: String,
default: '',

View File

@ -25,7 +25,7 @@
@if (!$hideCompanyEdit)
<akaunting-company-edit company-id="{{ session('company_id') }}"
button-text="{{ trans('settings.company.edit_your_business_address') }}"
taxt-number-text="{{ trans('general.tax_number') }}"
tax-number-text="{{ trans('general.tax_number') }}"
:company="{{ json_encode($company) }}"
:company-form="{{ json_encode([
'show' => true,