mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-03-03 03:07:01 +00:00
Updated translations
This commit is contained in:
@@ -5691,6 +5691,8 @@ $lang = array(
|
|||||||
'peppol_sending_success' => 'E-Invoice sent successfully!',
|
'peppol_sending_success' => 'E-Invoice sent successfully!',
|
||||||
'auto_generate' => 'Auto Generate',
|
'auto_generate' => 'Auto Generate',
|
||||||
'mollie_payment_pending' => 'Your payment is pending. Please wait for it to be processed. We will email you when it is completed.',
|
'mollie_payment_pending' => 'Your payment is pending. Please wait for it to be processed. We will email you when it is completed.',
|
||||||
|
'over_payment_helper' => 'Optional: you can pay more than the amount shown here. (ie tip, round up)',
|
||||||
|
'new_resource' => 'New Resource',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
|||||||
@@ -8,14 +8,24 @@
|
|||||||
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2 flex flex-col">
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2 flex flex-col">
|
||||||
<template x-for="(invoice, index) in payableInvoices" :key="index">
|
<template x-for="(invoice, index) in payableInvoices" :key="index">
|
||||||
|
|
||||||
<div class="flex items-center mb-2">
|
<div class="mb-2">
|
||||||
<label>
|
<div class="flex items-center">
|
||||||
<span x-text="'{{ ctrans('texts.invoice') }} ' + invoice.number" class="mt-2"></span>
|
<label>
|
||||||
<span class="pr-2">{{ $currency->code }} ({{ $currency->symbol }})</span>
|
<span x-text="'{{ ctrans('texts.invoice') }} ' + invoice.number" class="mt-2"></span>
|
||||||
<input type="text" class="input mt-0 mr-4 relative" name="payable_invoices[]"
|
<span class="pr-2">{{ $currency->code }} ({{ $currency->symbol }})</span>
|
||||||
x-model="payableInvoices[index].formatted_amount" />
|
<input type="text" class="input mt-0 mr-4 relative" name="payable_invoices[]"
|
||||||
</label>
|
x-model="payableInvoices[index].formatted_amount" />
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@if($settings->client_portal_allow_over_payment)
|
||||||
|
<div class="mt-1">
|
||||||
|
<span class="text-xs text-gray-800 italic">{{ ctrans('texts.over_payment_helper') }}</span>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template x-if="errors.length > 0">
|
<template x-if="errors.length > 0">
|
||||||
@@ -26,6 +36,8 @@
|
|||||||
<span class="mt-1 text-sm text-gray-800">{{ ctrans('texts.minimum_payment') }}:
|
<span class="mt-1 text-sm text-gray-800">{{ ctrans('texts.minimum_payment') }}:
|
||||||
{{ $settings->client_portal_under_payment_minimum }}</span>
|
{{ $settings->client_portal_under_payment_minimum }}</span>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<div class="bg-white px-4 py-5 flex items-center w-full justify-end space-x-3">
|
<div class="bg-white px-4 py-5 flex items-center w-full justify-end space-x-3">
|
||||||
|
|||||||
@@ -102,6 +102,12 @@
|
|||||||
{{ $invoice->client->currency()->code }} ({{ $invoice->client->currency()->symbol }})
|
{{ $invoice->client->currency()->code }} ({{ $invoice->client->currency()->symbol }})
|
||||||
{{ $invoice->partial > 0 ? $invoice->partial : $invoice->balance }}
|
{{ $invoice->partial > 0 ? $invoice->partial : $invoice->balance }}
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
@if($settings->client_portal_allow_over_payment)
|
||||||
|
<div class="mt-1">
|
||||||
|
<span class="mt-1 text-sm text-gray-800">{{ ctrans('texts.over_payment_helper') }}</span>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user