diff --git a/lang/es.json b/lang/es.json index 78b490af..93f89771 100644 --- a/lang/es.json +++ b/lang/es.json @@ -1,8 +1,9 @@ { "This subscription is no longer eligible for a self-service refund.": "Esta suscripción ya no es elegible para una devolución automática.", "Your payment was refunded, your subscription was canceled, and your bank connections were disconnected.": "Te hemos devuelto el pago, cancelado la suscripción y desconectado tus cuentas bancarias.", - "You'll be charged :amount today": "Se te cobrará :amount hoy", - "Changed your mind? Get a full refund yourself from Settings within the first :days days — no questions asked.": "¿Cambias de idea? Solicita tú mismo la devolución completa desde Ajustes durante los primeros :days días, sin preguntas.", + "Try it for :days days": "Pruébalo durante :days días", + "Don't like it? Get a full refund with one tap from Settings — no questions asked.": "¿No te gusta? Obtén la devolución completa con un click desde Ajustes, sin preguntas.", + "You pay :amount today, refunded in full if you cancel within :days days.": "Pagas :amount hoy y te lo devolvemos íntegro si cancelas en los primeros :days días.", ":days-day free trial": "Prueba gratis de :days días", "You won't be charged until your :days-day trial ends. Cancel anytime before then.": "No se te cobrará hasta que termine tu prueba de :days días. Cancela cuando quieras antes de eso.", "Money-back guarantee": "Garantía de devolución", diff --git a/lang/fr.json b/lang/fr.json index 257cc47f..8f982de6 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -1,8 +1,9 @@ { "This subscription is no longer eligible for a self-service refund.": "Cet abonnement n'est plus éligible à un remboursement automatique.", "Your payment was refunded, your subscription was canceled, and your bank connections were disconnected.": "Votre paiement a été remboursé, votre abonnement annulé et vos comptes bancaires déconnectés.", - "You'll be charged :amount today": "Vous serez débité de :amount aujourd'hui", - "Changed your mind? Get a full refund yourself from Settings within the first :days days — no questions asked.": "Vous avez changé d'avis ? Demandez vous-même un remboursement complet depuis les Paramètres durant les :days premiers jours, sans condition.", + "Try it for :days days": "Essayez-le pendant :days jours", + "Don't like it? Get a full refund with one tap from Settings — no questions asked.": "Vous n'aimez pas ? Obtenez un remboursement intégral en un clic depuis les Paramètres, sans condition.", + "You pay :amount today, refunded in full if you cancel within :days days.": "Vous payez :amount aujourd'hui, intégralement remboursé si vous annulez dans les :days jours.", ":days-day free trial": "Essai gratuit de :days jours", "You won't be charged until your :days-day trial ends. Cancel anytime before then.": "Vous ne serez débité qu'à la fin de votre essai de :days jours. Annulez à tout moment avant.", "Money-back guarantee": "Garantie de remboursement", diff --git a/resources/js/pages/subscription/paywall.tsx b/resources/js/pages/subscription/paywall.tsx index 84882fa1..111d4a34 100644 --- a/resources/js/pages/subscription/paywall.tsx +++ b/resources/js/pages/subscription/paywall.tsx @@ -59,12 +59,19 @@ function TrialTerms({ return (
- {__("You'll be charged :amount today", { amount })} + {__('Try it for :days days', { + days: offer.refundWindowDays, + })}
{__( - 'Changed your mind? Get a full refund yourself from Settings within the first :days days — no questions asked.', - { days: offer.refundWindowDays }, + "Don't like it? Get a full refund with one tap from Settings — no questions asked.", + )} +
++ {__( + 'You pay :amount today, refunded in full if you cancel within :days days.', + { amount, days: offer.refundWindowDays }, )}