Added translations 🌎

ref #113
This commit is contained in:
2021-04-15 15:34:36 +02:00
parent 57618156b4
commit d015f97395
5 changed files with 27 additions and 14 deletions

View File

@@ -33,7 +33,7 @@
if (processed_last_submit === true) {
processed_last_submit = false;
const toast = Toastify({
text: "Updating Donation",
text: $_('updating-donation'),
duration: -1,
}).showToast();
editable.donor = editable.donor.id;
@@ -48,7 +48,7 @@
payment_modal_open = false;
//
Toastify({
text: "Donation updated",
text: $_('donation-updated'),
duration: 500,
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
}).showToast();
@@ -73,7 +73,7 @@
payment_modal_open = false;
//
Toastify({
text: "Donation updated",
text: $_('donation-updated'),
duration: 500,
backgroundColor: "linear-gradient(to right, #00b09b, #96c93d)",
}).showToast();
@@ -133,11 +133,11 @@
</div>
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
<h3 class="text-lg leading-6 font-medium text-gray-900">
Add or Update a payment
{$_('enter-payment')}
</h3>
<div class="mt-2 mb-6">
<p class="text-sm text-gray-500">
You can update the donation's paid amount manually or use the TODO button to use the donation's exact amount.
{$_('you-can-enter-the-donations-paid-amount-manually-or-use-the-max-button-to-use-the-donations-exact-amount')}
</p>
</div>
<div class="grid grid-cols gap-6">
@@ -170,7 +170,7 @@
{#if !is_amount_valid}
<span
class="flex items-center font-medium tracking-wide text-red-500 text-xs mt-1 ml-1">
Payment amount must be greater than 0.00€
{$_('payment-amount-must-be-greater-than-0-00eur')}
</span>
{/if}
</div>