Skip to content

Commit

Permalink
tax_number language text not translated in the invoice's company section
Browse files Browse the repository at this point in the history
  • Loading branch information
burakcakirel committed Mar 26, 2021
1 parent 1a80b64 commit 8201684
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions resources/assets/js/components/AkauntingCompanyEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down Expand Up @@ -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: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8201684

Please sign in to comment.