diff --git a/services/web/app/views/subscriptions/dashboard/_personal_subscription_recurly.pug b/services/web/app/views/subscriptions/dashboard/_personal_subscription_recurly.pug index 521ac100e1..6dc7f29896 100644 --- a/services/web/app/views/subscriptions/dashboard/_personal_subscription_recurly.pug +++ b/services/web/app/views/subscriptions/dashboard/_personal_subscription_recurly.pug @@ -22,7 +22,7 @@ div(ng-controller="RecurlySubscriptionController") if (personalSubscription.pendingPlan) p #{translate("want_change_to_apply_before_plan_end")} else if (personalSubscription.plan.groupPlan) - p #{translate("contact_support_to_change_group_subscription")} + p !{translate("contact_support_to_change_group_subscription", {}, [{ name: "a", attrs: { href: "/contact"}}])} if (personalSubscription.recurly.trialEndsAtFormatted && personalSubscription.recurly.trial_ends_at > Date.now()) p You're on a free trial which ends on #{personalSubscription.recurly.trialEndsAtFormatted} p !{translate("next_payment_of_x_collectected_on_y", {paymentAmmount: personalSubscription.recurly.displayPrice, collectionDate: personalSubscription.recurly.nextPaymentDueAt}, ['strong', 'strong'])} @@ -86,7 +86,7 @@ div(ng-controller="RecurlySubscriptionController") ng-click="openGroupPlanModal()" ) #{translate('change_to_group_plan')} div(ng-hide="isValidCurrencyForUpgrade") - span #{translate('contact_support_to_upgrade_to_group_subscription')} + span !{translate('contact_support_to_upgrade_to_group_subscription', {}, [{ name: "a", attrs: { href: "/contact"}}])} .div(ng-controller="RecurlyCancellationController", ng-show="showCancellation").text-center diff --git a/services/web/locales/en.json b/services/web/locales/en.json index 76b142fd7e..52e8b9bfa2 100644 --- a/services/web/locales/en.json +++ b/services/web/locales/en.json @@ -1182,8 +1182,8 @@ "currently_subscribed_to_plan": "You are currently subscribed to the <0>__planName__ plan.", "your_plan_is_changing_at_term_end": "Your plan is changing to <0>__pendingPlanName__ at the end of the current billing period.", "want_change_to_apply_before_plan_end": "If you wish this change to apply before the end of your current billing period, please contact us.", - "contact_support_to_change_group_subscription": "Please contact support if you wish to change your group subscription.", - "contact_support_to_upgrade_to_group_subscription": "Please contact support if you wish to be upgraded to a group subscription.", + "contact_support_to_change_group_subscription": "Please <0>contact support if you wish to change your group subscription.", + "contact_support_to_upgrade_to_group_subscription": "Please <0>contact support if you wish to be upgraded to a group subscription.", "change_plan": "Change plan", "change_to_group_plan": "Change to a group plan", "next_payment_of_x_collectected_on_y": "The next payment of <0>__paymentAmmount__ will be collected on <1>__collectionDate__.",