translations finished

This commit is contained in:
ilmedova 2022-11-22 13:51:32 +05:00
parent 63b0666ec7
commit 259be342fb
3 changed files with 57 additions and 47 deletions

View File

@ -192,27 +192,37 @@
'accepted' => 'Accepted',
'enterpreneur' => 'Entrepreneur',
'fond_capital' => 'Fond capital',
'management_types' => 'Management types',
'signers' => 'Signers',
'share_holders' => 'Share holders',
'organization_form' => 'Organizational form',
'is_agent' => 'Is agent?',
'state' => 'State',
'actions' => 'Actions',
'closed' => 'Closed',
'open' => 'Open',
'add_new_user' => 'Add new user',
'fullname' => 'Full Name',
'fill_the_form' => 'Fill the form',
'go_to_ticket' => 'Go to ticket',
'close' => 'Close',
'save' => 'Save',
'back' => 'Back',
'admin_panel' => 'Admin Panel',
'chat' => 'Chat',
'type_here' => 'Type here',
'topic' => 'Topic'
'enterpreneur' => 'Entrepreneur',
'fond_capital' => 'Fond capital',
'management_types' => 'Management types',
'signers' => 'Signers',
'share_holders' => 'Share holders',
'organization_form' => 'Organizational form',
'is_agent' => 'Is agent?',
'state' => 'State',
'actions' => 'Actions',
'closed' => 'Closed',
'open' => 'Open',
'add_new_user' => 'Add new user',
'fullname' => 'Full Name',
'fill_the_form' => 'Fill the form',
'go_to_ticket' => 'Go to ticket',
'close' => 'Close',
'save' => 'Save',
'back' => 'Back',
'admin_panel' => 'Admin Panel',
'chat' => 'Chat',
'type_here' => 'Type here',
'topic' => 'Topic',
'note' => 'Note',
'create_ticket_for_application' => 'Create ticket for the application',
'title' => 'Title',
'content' => 'Content',
'application' => 'Application',
'accepted_date' => 'Accepted date',
'approved_by' => 'Approved by',
'approved_date' => 'Approved date',
'last_modified_by' => 'Last modified by',
'last_modified_date' => 'Last modified date'
]
];

View File

@ -1,31 +1,31 @@
<div class="form-group">
<label for="company"><small>Name</small></label>
<label for="company"><small>{{ trans('app.company.name') }}</small></label>
<h6><strong>{{ $application->account->profile->name ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Short name</small></label>
<label for="company"><small>{{ trans('app.company.short_name') }}</small></label>
<h6><strong>{{ $application->account->profile->short_name ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Registration number</small></label>
<label for="company"><small>{{ trans('app.company.registration_number') }}</small></label>
<h6><strong>{{ $application->account->profile->registration_number ?? null }}</strong></h6>
</div>
@if (isset($application->account->profile->registration_date))
<div class="form-group">
<label for="company"><small>Registration date</small></label>
<label for="company"><small>{{ trans('app.company.registration_date') }}</small></label>
<h6><strong>{{ Carbon\Carbon::parse($application->account->profile->registration_date)->format('d.m.Y') }}</strong>
</h6>
</div>
@endif
<div class="form-group">
<label for="company"><small>Registration agency</small></label>
<label for="company"><small>{{ trans('app.company.state_registration_agency') }}</small></label>
<h6><strong>{{ $application->account->profile->state_registration_agency ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Registration place</small></label>
<label for="company"><small>{{ trans('app.company.registration_place') }}</small></label>
<h6><strong>{{ $application->account->profile->registration_place ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Registration address</small></label>
<label for="company"><small>{{ trans('app.company.registration_address') }}</small></label>
<h6><strong>{{ $application->account->profile->registration_address ?? null }}</strong></h6>
</div>

View File

@ -60,7 +60,7 @@ class="bi bi-check2-square" viewBox="0 0 16 16">
<div class="modal-dialog modal-primary" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Fill the form</h4>
<h4 class="modal-title">{{ trans('app.last_updates.fill_the_form') }}</h4>
<button class="close" type="button" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
</div>
@ -72,7 +72,7 @@ class="bi bi-check2-square" viewBox="0 0 16 16">
<input type="hidden" name="id" value="{{ $application->id }}">
<div class="form-group col-sm-12" element="div" bp-field-wrapper="true"
bp-field-name="title" bp-field-type="text">
<label>Note</label>
<label>{{ trans('app.last_updates.note') }}</label>
<textarea name="note" value="" class="form-control"></textarea>
@ -80,8 +80,8 @@ class="bi bi-check2-square" viewBox="0 0 16 16">
</div>
</div>
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Close</button>
<button class="btn btn-success" type="submit">Save</button>
<button class="btn btn-secondary" type="button" data-dismiss="modal">{{ trans('app.last_updates.close') }}</button>
<button class="btn btn-success" type="submit">{{ trans('app.last_updates.save') }}</button>
</div>
</form>
</div>
@ -152,7 +152,7 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
<div class="modal-dialog modal-lg modal-success" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Create ticket for the application</h4>
<h4 class="modal-title">{{ trans('app.last_updates.create_ticket_for_application') }}</h4>
<button class="close" type="button" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
</div>
@ -161,7 +161,7 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
@csrf
<input type="hidden" name="application_id" value="{{ $application->id }}">
<input type="hidden" name="client_id" value={{ $application->account_id }}>
<input type="hidden" name="status_id" value="1" >
<input type="hidden" name="status_id" value="1">
<input type="hidden" name="category_id" value="2">
<input type="hidden" name="last_sender" value="admin">
<div class="card">
@ -170,7 +170,7 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
<div class="form-group col-sm-12" element="div" bp-field-wrapper="true"
bp-field-name="title" bp-field-type="text">
<label>Title</label>
<label>{{ trans('app.last_updates.title') }}</label>
<input type="text" name="title" value="" class="form-control">
@ -178,7 +178,7 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
<div class="form-group col-sm-12" element="div" bp-field-wrapper="true"
bp-field-name="title" bp-field-type="text">
<label>Content</label>
<label>{{ trans('app.last_updates.content') }}</label>
<textarea name="content" value="" class="form-control"></textarea>
@ -192,7 +192,7 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
<button type="submit" class="btn btn-success">
<span class="la la-save" role="presentation" aria-hidden="true"></span>
&nbsp;
<span data-value="save_and_back">Save</span>
<span data-value="save_and_back">{{ trans('app.last_updates.save') }}</span>
</button>
</div>
</div>
@ -200,7 +200,7 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
</form>
</div>
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Close</button>
<button class="btn btn-secondary" type="button" data-dismiss="modal">{{ trans('app.last_updates.save') }}</button>
</div>
</div>
<!-- /.modal-content-->
@ -214,33 +214,33 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Application</h5>
<h5 class="card-title">{{ trans('app.last_updates.application') }}</h5>
<div class="form-group">
<label for="company"><small>Status</small></label>
<label for="company"><small>{{ trans('app.ticket.status') }}</small></label>
<h6><strong>{{ $application->state }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Accepted by</small></label>
<label for="company"><small>{{ trans('app.last_updates.accepted_by') }}</small></label>
<h6><strong>{{ $application->accepted_by }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Accepted date</small></label>
<label for="company"><small>{{ trans('app.last_updates.accepted_date') }}</small></label>
<h6><strong>{{ $application->accepted_date }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Approved by</small></label>
<label for="company"><small>{{ trans('app.last_updates.approved_by') }}</small></label>
<h6><strong>{{ $application->approved_by }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Approved date</small></label>
<label for="company"><small>{{ trans('app.last_updates.approved_date') }}</small></label>
<h6><strong>{{ $application->approved_date }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Last modified by</small></label>
<label for="company"><small>{{ trans('app.last_updates.last_modified_by') }}</small></label>
<h6><strong>{{ $application->modified_by }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>Last modified date</small></label>
<label for="company"><small>{{ trans('app.last_updates.last_modified_date') }}</small></label>
<h6><strong>{{ $application->updated_at }}</strong></h6>
</div>