removed addresses lang file
This commit is contained in:
parent
6154ff31fd
commit
c809bf7418
@ -64,7 +64,7 @@ class Wizard
|
||||
'logo' => trans('settings.company.logo'),
|
||||
'skip' => trans('general.skip'),
|
||||
'save' => trans('general.save'),
|
||||
'country' => trans_choice('addresses.countries', 1),
|
||||
'country' => trans_choice('general.countries', 1),
|
||||
],
|
||||
|
||||
'currencies' => [
|
||||
|
@ -1,8 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'countries' => 'Country|Countries',
|
||||
'cities' => 'Town/City|Towns/Cities',
|
||||
'state' => 'Province/State',
|
||||
'zip_code' => 'Postal/Zip code',
|
||||
];
|
@ -52,6 +52,8 @@ return [
|
||||
'sales' => 'Sale|Sales',
|
||||
'purchases' => 'Purchase|Purchases',
|
||||
'notifications' => 'Notification|Notifications',
|
||||
'countries' => 'Country|Countries',
|
||||
'cities' => 'Town/City|Towns/Cities',
|
||||
|
||||
'welcome' => 'Welcome',
|
||||
'banking' => 'Banking',
|
||||
@ -164,6 +166,8 @@ return [
|
||||
'amount_due' => 'Amount due',
|
||||
'financial_year' => 'Financial Year',
|
||||
'created' => 'Created',
|
||||
'state' => 'Province/State',
|
||||
'zip_code' => 'Postal/Zip code',
|
||||
|
||||
'card' => [
|
||||
'cards' => 'Card|Cards',
|
||||
|
@ -31,13 +31,13 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', [], setting('company.city')) }}
|
||||
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', [], setting('company.city')) }}
|
||||
|
||||
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', [], setting('company.zip_code')) }}
|
||||
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', [], setting('company.zip_code')) }}
|
||||
|
||||
{{ Form::textGroup('state', trans('addresses.state'), 'city', [], setting('company.state')) }}
|
||||
{{ Form::textGroup('state', trans('general.state'), 'city', [], setting('company.state')) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
|
||||
|
||||
{{ Form::fileGroup('logo', trans('companies.logo'), '', ['dropzone-class' => 'form-file']) }}
|
||||
|
||||
|
@ -32,13 +32,13 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', []) }}
|
||||
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', []) }}
|
||||
|
||||
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', []) }}
|
||||
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', []) }}
|
||||
|
||||
{{ Form::textGroup('state', trans('addresses.state'), 'city', []) }}
|
||||
{{ Form::textGroup('state', trans('general.state'), 'city', []) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), $company->country, []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), $company->country, []) }}
|
||||
|
||||
{{ Form::fileGroup('logo', trans('companies.logo'), '', ['dropzone-class' => 'form-file'], $company->company_logo) }}
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('settings.company.address'), null, setting('company.address')) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
|
||||
|
||||
{!! Form::hidden('_prefix', 'company') !!}
|
||||
</div>
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
|
||||
{{ Form::hidden('type', 'customer') }}
|
||||
{!! Form::hidden('enabled', '1', []) !!}
|
||||
|
@ -21,7 +21,7 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address'), null, $customer->address) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), $customer->country, []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), $customer->country, []) }}
|
||||
|
||||
{{ Form::hidden('type', 'customer') }}
|
||||
{!! Form::hidden('enabled', '1', []) !!}
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
|
||||
{{ Form::hidden('type', 'vendor') }}
|
||||
{!! Form::hidden('enabled', '1', []) !!}
|
||||
|
@ -21,7 +21,7 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address'), null, $vendor->address) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), $vendor->country, []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), $vendor->country, []) }}
|
||||
|
||||
{{ Form::hidden('type', 'vendor') }}
|
||||
{!! Form::hidden('enabled', '1', []) !!}
|
||||
|
@ -31,13 +31,13 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', []) }}
|
||||
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', []) }}
|
||||
|
||||
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', []) }}
|
||||
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', []) }}
|
||||
|
||||
{{ Form::textGroup('state', trans('addresses.state'), 'city', []) }}
|
||||
{{ Form::textGroup('state', trans('general.state'), 'city', []) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
|
||||
{{ Form::fileGroup('logo', trans_choice('general.pictures', 1), '', ['dropzone-class' => 'form-file']) }}
|
||||
|
||||
|
@ -32,13 +32,13 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', []) }}
|
||||
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', []) }}
|
||||
|
||||
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', []) }}
|
||||
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', []) }}
|
||||
|
||||
{{ Form::textGroup('state', trans('addresses.state'), 'city', []) }}
|
||||
{{ Form::textGroup('state', trans('general.state'), 'city', []) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), $vendor->country, []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), $vendor->country, []) }}
|
||||
|
||||
{{ Form::fileGroup('logo', trans_choice('general.logos', 1), '', ['dropzone-class' => 'form-file']) }}
|
||||
|
||||
|
@ -32,13 +32,13 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', []) }}
|
||||
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', []) }}
|
||||
|
||||
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', []) }}
|
||||
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', []) }}
|
||||
|
||||
{{ Form::textGroup('state', trans('addresses.state'), 'city', []) }}
|
||||
{{ Form::textGroup('state', trans('general.state'), 'city', []) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
|
||||
{{ Form::textGroup('reference', trans('general.reference'), 'file', []) }}
|
||||
|
||||
|
@ -31,13 +31,13 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('general.address')) }}
|
||||
|
||||
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', []) }}
|
||||
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', []) }}
|
||||
|
||||
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', []) }}
|
||||
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', []) }}
|
||||
|
||||
{{ Form::textGroup('state', trans('addresses.state'), 'city', []) }}
|
||||
{{ Form::textGroup('state', trans('general.state'), 'city', []) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), $customer->country, []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), $customer->country, []) }}
|
||||
|
||||
{{ Form::textGroup('reference', trans('general.reference'), 'file', []) }}
|
||||
|
||||
|
@ -28,13 +28,13 @@
|
||||
|
||||
{{ Form::textareaGroup('address', trans('settings.company.address'), null, setting('company.address')) }}
|
||||
|
||||
{{ Form::textGroup('city', trans_choice('addresses.cities', 1), 'city', [], setting('company.city')) }}
|
||||
{{ Form::textGroup('city', trans_choice('general.cities', 1), 'city', [], setting('company.city')) }}
|
||||
|
||||
{{ Form::textGroup('zip_code', trans('addresses.zip_code'), 'mail-bulk', [], setting('company.zip_code')) }}
|
||||
{{ Form::textGroup('zip_code', trans('general.zip_code'), 'mail-bulk', [], setting('company.zip_code')) }}
|
||||
|
||||
{{ Form::textGroup('state', trans('addresses.state'), 'city', [], setting('company.state')) }}
|
||||
{{ Form::textGroup('state', trans('general.state'), 'city', [], setting('company.state')) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('company.country'), []) }}
|
||||
|
||||
{{ Form::fileGroup('logo', trans('settings.company.logo'), 'file-image-o', [], setting('company.logo')) }}
|
||||
</div>
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
{{ Form::selectGroup('locale', trans_choice('general.languages', 1), 'flag', language()->allowed(), setting('default.locale'), []) }}
|
||||
|
||||
{{ Form::selectGroup('country', trans_choice('addresses.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
{{ Form::selectGroup('country', trans_choice('general.countries', 1), 'globe-americas', trans('countries'), setting('default.country'), []) }}
|
||||
|
||||
{{ Form::selectGroup('list_limit', trans('settings.default.list_limit'), 'columns', ['10' => '10', '25' => '25', '50' => '50', '100' => '100'], setting('default.list_limit'), []) }}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user