diff --git a/services/web/frontend/extracted-translations.json b/services/web/frontend/extracted-translations.json index 8ed1f63610..3e192edc77 100644 --- a/services/web/frontend/extracted-translations.json +++ b/services/web/frontend/extracted-translations.json @@ -326,6 +326,7 @@ "find_the_symbols_you_need_with_premium": "", "first_name": "", "first_x_days_free_after_that_y_per_month": "", + "first_x_days_free_after_that_y_per_year": "", "fold_line": "", "folder_location": "", "following_paths_conflict": "", diff --git a/services/web/frontend/js/features/subscription/components/new/payment-preview/trial-price.tsx b/services/web/frontend/js/features/subscription/components/new/payment-preview/trial-price.tsx index 7bd62ad893..91872a2df4 100644 --- a/services/web/frontend/js/features/subscription/components/new/payment-preview/trial-price.tsx +++ b/services/web/frontend/js/features/subscription/components/new/payment-preview/trial-price.tsx @@ -2,7 +2,8 @@ import { Trans } from 'react-i18next' import { usePaymentContext } from '../../../context/payment-context' function TrialPrice() { - const { currencySymbol, trialLength, recurlyPrice } = usePaymentContext() + const { currencySymbol, plan, recurlyPrice, trialLength } = + usePaymentContext() if (!trialLength || !recurlyPrice) { return null @@ -10,14 +11,25 @@ function TrialPrice() { return (