diff --git a/frontend/src/i18n/locales/en.json b/frontend/src/i18n/locales/en.json index 24cb314..9b99614 100755 --- a/frontend/src/i18n/locales/en.json +++ b/frontend/src/i18n/locales/en.json @@ -2208,7 +2208,9 @@ "free": "Free", "month": "month", "year": "year", - "billedAnnually": "Billed annually €{{price}}", + "plusVat": "+ VAT", + "vatNotIncluded": "(VAT not included)", + "billedAnnually": "Billed annually €{{price}} + VAT", "save": "Save {{percent}}%", "trialDays": "{{days}}-day free trial", "trial": "trial", diff --git a/frontend/src/i18n/locales/es.json b/frontend/src/i18n/locales/es.json index 80944ae..81467e3 100755 --- a/frontend/src/i18n/locales/es.json +++ b/frontend/src/i18n/locales/es.json @@ -2200,7 +2200,9 @@ "free": "Gratis", "month": "mes", "year": "año", - "billedAnnually": "Facturado anualmente €{{price}}", + "plusVat": "+ IVA", + "vatNotIncluded": "(IVA no incluido)", + "billedAnnually": "Facturado anualmente €{{price}} + IVA", "save": "Ahorra {{percent}}%", "trialDays": "{{days}} días de prueba gratis", "trial": "de prueba", diff --git a/frontend/src/i18n/locales/pt-BR.json b/frontend/src/i18n/locales/pt-BR.json index ed72a04..0a603dd 100755 --- a/frontend/src/i18n/locales/pt-BR.json +++ b/frontend/src/i18n/locales/pt-BR.json @@ -2218,7 +2218,9 @@ "free": "Grátis", "month": "mês", "year": "ano", - "billedAnnually": "Cobrado anualmente €{{price}}", + "plusVat": "+ IVA", + "vatNotIncluded": "(IVA não incluído)", + "billedAnnually": "Cobrado anualmente €{{price}} + IVA", "save": "Economize {{percent}}%", "trialDays": "{{days}} dias de teste grátis", "trial": "de teste", diff --git a/frontend/src/pages/Billing.jsx b/frontend/src/pages/Billing.jsx index 1cc7bb8..3b143d2 100755 --- a/frontend/src/pages/Billing.jsx +++ b/frontend/src/pages/Billing.jsx @@ -208,6 +208,9 @@ export default function Billing() { /{plan.billing_period === 'annual' ? t('billing.year') : t('billing.month')} + + ({t('pricing.vatNotIncluded') || '+ IVA'}) +
)} diff --git a/frontend/src/pages/Pricing.jsx b/frontend/src/pages/Pricing.jsx index cc03839..f90e596 100755 --- a/frontend/src/pages/Pricing.jsx +++ b/frontend/src/pages/Pricing.jsx @@ -135,8 +135,11 @@ export default function Pricing() { €{plan.monthly_price.toFixed(2)} /{t('pricing.month')} ++
{subscriptionData.plan.formatted_price} / {subscriptionData.plan.billing_period === 'monthly' ? t('common.month') || 'mês' : t('common.year') || 'ano'} + ({t('pricing.vatNotIncluded') || '+ IVA'})
{subscriptionData.subscription?.current_period_end && (