change languge text
This commit is contained in:
parent
66f0e7c9d7
commit
ae15735212
@ -51,7 +51,6 @@ return [
|
||||
],
|
||||
'paid' => [
|
||||
'await' => 'Awaiting payment',
|
||||
'partial' => 'Partial paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
@ -56,7 +56,6 @@ return [
|
||||
],
|
||||
'paid' => [
|
||||
'await' => 'Awaiting payment',
|
||||
'partial' => 'Partial paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
@ -69,7 +69,7 @@
|
||||
@if($bill->status->code != 'paid' && empty($bill->payments()->count()))
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('bills.messages.status.paid.await') }}
|
||||
@else
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('bills.messages.status.paid.partial') }}
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('general.partially_paid') }}
|
||||
@endif
|
||||
|
||||
@if(empty($bill->payments()->count()) || (!empty($bill->payments()->count()) && $bill->paid != $bill->amount))
|
||||
|
@ -80,7 +80,7 @@
|
||||
@if($invoice->status->code != 'paid' && empty($invoice->payments()->count()))
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('invoices.messages.status.paid.await') }}
|
||||
@else
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('invoices.messages.status.paid.partial') }}
|
||||
{{ trans_choice('general.statuses', 1) . ': ' . trans('general.partially_paid') }}
|
||||
@endif
|
||||
|
||||
@permission('update-incomes-invoices')
|
||||
|
Loading…
x
Reference in New Issue
Block a user