Missing 'Edit your business address' translation

This commit is contained in:
Burak Çakırel 2021-02-11 15:15:12 +03:00
parent 6d47a8c32a
commit 66d92e688e
No known key found for this signature in database
GPG Key ID: 48FFBB7771B99C7C
2 changed files with 9 additions and 8 deletions

View File

@ -3,12 +3,13 @@
return [ return [
'company' => [ 'company' => [
'description' => 'Change company name, email, address, tax number etc', 'description' => 'Change company name, email, address, tax number etc',
'name' => 'Name', 'name' => 'Name',
'email' => 'Email', 'email' => 'Email',
'phone' => 'Phone', 'phone' => 'Phone',
'address' => 'Address', 'address' => 'Address',
'logo' => 'Logo', 'edit_your_business_address' => 'Edit your business address',
'logo' => 'Logo',
], ],
'localisation' => [ 'localisation' => [

View File

@ -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'),