Skip to content

Commit

Permalink
Missing 'Edit your business address' translation
Browse files Browse the repository at this point in the history
  • Loading branch information
burakcakirel committed Feb 11, 2021
1 parent 6d47a8c commit 66d92e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions resources/lang/en-GB/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
return [

'company' => [
'description' => 'Change company name, email, address, tax number etc',
'name' => 'Name',
'email' => 'Email',
'phone' => 'Phone',
'address' => 'Address',
'logo' => 'Logo',
'description' => 'Change company name, email, address, tax number etc',
'name' => 'Name',
'email' => 'Email',
'phone' => 'Phone',
'address' => 'Address',
'edit_your_business_address' => 'Edit your business address',
'logo' => 'Logo',
],

'localisation' => [
Expand Down
4 changes: 2 additions & 2 deletions resources/views/components/documents/form/company.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@

@if (!$hideCompanyEdit)
<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') }}"
:company="{{ json_encode($company) }}"
:company-form="{{ json_encode([
'show' => true,
'text' => trans('Edit your business address'),
'text' => trans('settings.company.edit_your_business_address'),
'buttons' => [
'cancel' => [
'text' => trans('general.cancel'),
Expand Down

0 comments on commit 66d92e6

Please sign in to comment.