Merge pull request #1847 from burakcakirel/missing-translation
Missing 'Edit your business address' translation
This commit is contained in:
commit
48b67c8f3a
@ -4,5 +4,6 @@ return [
|
|||||||
|
|
||||||
'sales_price' => 'Sale Price',
|
'sales_price' => 'Sale Price',
|
||||||
'purchase_price' => 'Purchase Price',
|
'purchase_price' => 'Purchase Price',
|
||||||
|
'enter_item_description' => 'Enter item description',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -8,6 +8,7 @@ return [
|
|||||||
'email' => 'Email',
|
'email' => 'Email',
|
||||||
'phone' => 'Phone',
|
'phone' => 'Phone',
|
||||||
'address' => 'Address',
|
'address' => 'Address',
|
||||||
|
'edit_your_business_address' => 'Edit your business address',
|
||||||
'logo' => 'Logo',
|
'logo' => 'Logo',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
@ -24,12 +24,12 @@
|
|||||||
|
|
||||||
@if (!$hideCompanyEdit)
|
@if (!$hideCompanyEdit)
|
||||||
<akaunting-company-edit company-id="{{ session('company_id') }}"
|
<akaunting-company-edit company-id="{{ session('company_id') }}"
|
||||||
button-text="{{ trans('Edit your business address') }}"
|
button-text="{{ trans('settings.company.edit_your_business_address') }}"
|
||||||
taxt-number-text="{{ trans('general.tax_number') }}"
|
taxt-number-text="{{ trans('general.tax_number') }}"
|
||||||
:company="{{ json_encode($company) }}"
|
:company="{{ json_encode($company) }}"
|
||||||
:company-form="{{ json_encode([
|
:company-form="{{ json_encode([
|
||||||
'show' => true,
|
'show' => true,
|
||||||
'text' => trans('Edit your business address'),
|
'text' => trans('settings.company.edit_your_business_address'),
|
||||||
'buttons' => [
|
'buttons' => [
|
||||||
'cancel' => [
|
'cancel' => [
|
||||||
'text' => trans('general.cancel'),
|
'text' => trans('general.cancel'),
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
@if (!$hideDescription)
|
@if (!$hideDescription)
|
||||||
<textarea
|
<textarea
|
||||||
class="form-control"
|
class="form-control"
|
||||||
placeholder="Enter item description"
|
placeholder="{{ trans('items.enter_item_description') }}"
|
||||||
style="height: 46px; overflow: hidden;"
|
style="height: 46px; overflow: hidden;"
|
||||||
:name="'items.' + index + '.description'"
|
:name="'items.' + index + '.description'"
|
||||||
v-model="row.description"
|
v-model="row.description"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user