You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subscriptionReactivation-subject-2 = Your {$productName} subscription has been reactivated
4
+
# Variables:
5
+
# $productName (String) - The name of the subscribed product, e.g. Mozilla VPN
6
+
subscriptionReactivation-freeTrial-subject = Your {$productName} trial has been reactivated
4
7
# Variables:
5
8
# $productName (String) - The name of the subscribed product, e.g. Mozilla VPN
6
9
subscriptionReactivation-title = Thank you for reactivating your {$productName} subscription!
7
10
# Variables:
11
+
# $productName (String) - The name of the subscribed product, e.g. Mozilla VPN
12
+
subscriptionReactivation-freeTrial-title = Thank you for reactivating your {$productName} trial!
13
+
# Variables:
8
14
# $invoiceTotal (String) - The amount of the subscription invoice, including currency, e.g. $10.00
9
15
# $nextInvoiceDateOnly (String) - The date of the next invoice, e.g. 2016/01/20
10
16
subscriptionReactivation-content = Your billing cycle and payment will remain the same. Your next charge will be {$invoiceTotal} on {$nextInvoiceDateOnly}. Your subscription will automatically renew each billing period unless you choose to cancel.
Copy file name to clipboardExpand all lines: libs/accounts/email-renderer/src/templates/subscriptionReactivation/index.mjml
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,11 @@
7
7
<mj-section>
8
8
<mj-column>
9
9
<mj-textcss-class="text-header">
10
-
<spandata-l10n-id="subscriptionReactivation-title"data-l10n-args="<%= JSON.stringify({productName}) %>">Thank you for reactivating your <%- productName %> subscription!</span>
10
+
<%if (isFreeTrialReactivation) { %>
11
+
<span data-l10n-id="subscriptionReactivation-freeTrial-title" data-l10n-args="<%= JSON.stringify({productName}) %>">Thank you for reactivating your <%- productName %> trial!</span>
12
+
<% } else { %>
13
+
<span data-l10n-id="subscriptionReactivation-title" data-l10n-args="<%= JSON.stringify({productName}) %>">Thank you for reactivating your <%- productName %> subscription!</span>
Copy file name to clipboardExpand all lines: libs/accounts/email-renderer/src/templates/subscriptionReactivation/index.txt
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,8 @@
1
+
<% if (isFreeTrialReactivation) { %>
2
+
subscriptionReactivation-freeTrial-title = "Thank you for reactivating your <%- productName %> trial!"
3
+
<% } else { %>
1
4
subscriptionReactivation-title = "Thank you for reactivating your <%- productName %> subscription!"
5
+
<% } %>
2
6
3
7
subscriptionReactivation-content = "Your billing cycle and payment will remain the same. Your next charge will be <%- invoiceTotal %> on <%- nextInvoiceDateOnly %>. Your subscription will automatically renew each billing period unless you choose to cancel."
0 commit comments