change back strings

This commit is contained in:
Abhinav 2022-09-15 15:14:31 +05:30
parent 0ff9ceece1
commit 3bf078b8aa
2 changed files with 2 additions and 3 deletions

View file

@ -59,7 +59,7 @@ function StripeSubscriptionOptions({
subscription.expiryTime
),
proceed: {
text: constants.REACTIVATE,
text: constants.REACTIVATE_SUBSCRIPTION,
action: activateSubscription.bind(
null,
appContext.setDialogMessage,
@ -77,7 +77,7 @@ function StripeSubscriptionOptions({
title: constants.CANCEL_SUBSCRIPTION,
content: constants.CANCEL_SUBSCRIPTION_MESSAGE(),
proceed: {
text: constants.CANCEL,
text: constants.CANCEL_SUBSCRIPTION,
action: cancelSubscription.bind(
null,
appContext.setDialogMessage,

View file

@ -331,7 +331,6 @@ const englishConstants = {
SUBSCRIPTION_CANCEL_SUCCESS: 'Subscription canceled successfully',
REACTIVATE_SUBSCRIPTION: 'Reactivate subscription',
REACTIVATE: 'Reactivate ',
REACTIVATE_SUBSCRIPTION_MESSAGE: (expiryTime) =>
`Once reactivated, you will be billed on ${dateString(expiryTime)}`,
SUBSCRIPTION_ACTIVATE_SUCCESS: 'Subscription activated successfully ',