language fix
This commit is contained in:
parent
8c312ad6cb
commit
8e67b33c29
@ -31,6 +31,9 @@ return [
|
||||
'mark_received' => 'Mark Received',
|
||||
'download_pdf' => 'Download PDF',
|
||||
'send_mail' => 'Send Email',
|
||||
'create_bill' => 'Create Bill',
|
||||
'receive_bill' => 'Receive Bill',
|
||||
'make_payment' => 'Make Payment',
|
||||
|
||||
'status' => [
|
||||
'draft' => 'Draft',
|
||||
|
@ -32,6 +32,9 @@ return [
|
||||
'download_pdf' => 'Download PDF',
|
||||
'send_mail' => 'Send Email',
|
||||
'all_invoices' => 'Login to view all invoices',
|
||||
'create_invoice' => 'Create Invoice',
|
||||
'send_invoice' => 'Send Invoice',
|
||||
'get_paid' => 'Get Paid',
|
||||
|
||||
'status' => [
|
||||
'draft' => 'Draft',
|
||||
|
@ -29,7 +29,7 @@
|
||||
<i class="fa fa-plus bg-blue"></i>
|
||||
|
||||
<div class="timeline-item">
|
||||
<h3 class="timeline-header">{{ trans('general.title.create', ['type' => trans_choice('general.bills', 1)]) }}</h3>
|
||||
<h3 class="timeline-header">{{ trans('bills.create_bill') }}</h3>
|
||||
|
||||
<div class="timeline-body">
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('bills.messages.status.created', ['date' => Date::parse($bill->created_at)->format($date_format)]) }}
|
||||
@ -44,7 +44,7 @@
|
||||
<i class="fa fa-envelope bg-orange"></i>
|
||||
|
||||
<div class="timeline-item">
|
||||
<h3 class="timeline-header">{{ trans('general.title.send', ['type' => trans_choice('general.bills', 1)]) }}</h3>
|
||||
<h3 class="timeline-header">{{ trans('bills.receive_bill') }}</h3>
|
||||
|
||||
<div class="timeline-body">
|
||||
@if ($bill->status->code == 'draft')
|
||||
@ -63,7 +63,7 @@
|
||||
<i class="fa fa-money bg-green"></i>
|
||||
|
||||
<div class="timeline-item">
|
||||
<h3 class="timeline-header">{{ trans('general.title.get', ['type' => trans('general.paid')]) }}</h3>
|
||||
<h3 class="timeline-header">{{ trans('bills.make_payment') }}</h3>
|
||||
|
||||
<div class="timeline-body">
|
||||
@if($bill->status->code != 'paid' && empty($bill->payments()->count()))
|
||||
|
@ -29,7 +29,7 @@
|
||||
<i class="fa fa-plus bg-blue"></i>
|
||||
|
||||
<div class="timeline-item">
|
||||
<h3 class="timeline-header">{{ trans('general.title.create', ['type' => trans_choice('general.invoices', 1)]) }}</h3>
|
||||
<h3 class="timeline-header">{{ trans('invoices.create_invoice') }}</h3>
|
||||
|
||||
<div class="timeline-body">
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('invoices.messages.status.created', ['date' => Date::parse($invoice->created_at)->format($date_format)]) }}
|
||||
@ -44,7 +44,7 @@
|
||||
<i class="fa fa-envelope bg-orange"></i>
|
||||
|
||||
<div class="timeline-item">
|
||||
<h3 class="timeline-header">{{ trans('general.title.send', ['type' => trans_choice('general.invoices', 1)]) }}</h3>
|
||||
<h3 class="timeline-header">{{ trans('invoices.send_invoice') }}</h3>
|
||||
|
||||
<div class="timeline-body">
|
||||
@if ($invoice->status->code != 'sent' && $invoice->status->code != 'partial')
|
||||
@ -74,7 +74,7 @@
|
||||
<i class="fa fa-money bg-green"></i>
|
||||
|
||||
<div class="timeline-item">
|
||||
<h3 class="timeline-header">{{ trans('general.title.get', ['type' => trans('general.paid')]) }}</h3>
|
||||
<h3 class="timeline-header">{{ trans('invoices.get_paid') }}</h3>
|
||||
|
||||
<div class="timeline-body">
|
||||
@if($invoice->status->code != 'paid' && empty($invoice->payments()->count()))
|
||||
|
Loading…
x
Reference in New Issue
Block a user