Add new string for playstore trial

This commit is contained in:
Neeraj Gupta 2023-06-29 16:57:15 +05:30
parent 16bf9feac4
commit 796046bd9f
3 changed files with 15 additions and 0 deletions

View file

@ -125,6 +125,9 @@ class MessageLookup extends MessageLookupByLibrary {
static String m34(reason) => static String m34(reason) =>
"Unfortunately your payment failed due to ${reason}"; "Unfortunately your payment failed due to ${reason}";
static String m65(endDate) =>
"Free trial valid till ${endDate}. You can choose a paid plan afterwards.";
static String m35(toEmail) => "Please email us at ${toEmail}"; static String m35(toEmail) => "Please email us at ${toEmail}";
static String m36(toEmail) => "Please send the logs to \n${toEmail}"; static String m36(toEmail) => "Please send the logs to \n${toEmail}";
@ -881,6 +884,7 @@ class MessageLookup extends MessageLookupByLibrary {
"Photos added by you will be removed from the album"), "Photos added by you will be removed from the album"),
"pickCenterPoint": "pickCenterPoint":
MessageLookupByLibrary.simpleMessage("Pick center point"), MessageLookupByLibrary.simpleMessage("Pick center point"),
"playStoreFreeTrialValidTill": m65,
"playstoreSubscription": "playstoreSubscription":
MessageLookupByLibrary.simpleMessage("PlayStore subscription"), MessageLookupByLibrary.simpleMessage("PlayStore subscription"),
"pleaseContactSupportAndWeWillBeHappyToHelp": "pleaseContactSupportAndWeWillBeHappyToHelp":

View file

@ -3844,6 +3844,16 @@ class S {
); );
} }
/// `Free trial valid till {endDate}. You can choose a paid plan afterwards.`
String playStoreFreeTrialValidTill(Object endDate) {
return Intl.message(
'Free trial valid till $endDate. You can choose a paid plan afterwards.',
name: 'playStoreFreeTrialValidTill',
desc: '',
args: [endDate],
);
}
/// `Your subscription will be cancelled on {endDate}` /// `Your subscription will be cancelled on {endDate}`
String subWillBeCancelledOn(Object endDate) { String subWillBeCancelledOn(Object endDate) {
return Intl.message( return Intl.message(

View file

@ -555,6 +555,7 @@
"faqs": "FAQs", "faqs": "FAQs",
"renewsOn": "Renews on {endDate}", "renewsOn": "Renews on {endDate}",
"freeTrialValidTill": "Free trial valid till {endDate}", "freeTrialValidTill": "Free trial valid till {endDate}",
"playStoreFreeTrialValidTill": "Free trial valid till {endDate}. You can choose a paid plan afterwards.",
"subWillBeCancelledOn": "Your subscription will be cancelled on {endDate}", "subWillBeCancelledOn": "Your subscription will be cancelled on {endDate}",
"subscription": "Subscription", "subscription": "Subscription",
"paymentDetails": "Payment details", "paymentDetails": "Payment details",