language changed..

This commit is contained in:
Cüneyt Şentürk 2023-11-29 15:06:35 +03:00
parent 116480762d
commit 8d1b5a7e16
2 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@ return [
'get_paid' => 'Get Paid',
'accept_payments' => 'Accept Online Payments',
'payments_received' => 'Payments received',
'over_payment' => 'The amount you entered passes the total: :amount',
'form_description' => [
'billing' => 'Billing details appear in your invoice. Invoice Date is used in the dashboard and reports. Select the date you expect to get paid as the Due Date.',

View File

@ -69,7 +69,7 @@
<div class="relative col-span-6 text-xs flex mt-5">
<div class="rounded-xl px-5 py-3 bg-red-100">
<div class="w-auto text-xs mr-2 text-red-600"
v-html="'{{ trans('messages.error.over_payment', ['amount' => '#amount']) }}'.replace('#amount', form.error_amount)"
v-html="'{{ trans('invoices.over_payment', ['amount' => '#amount']) }}'.replace('#amount', form.error_amount)"
></div>
</div>
</div>