Compare commits

...

2 Commits

Author SHA1 Message Date
Abdullah Atta
8a6da95e26 web: change 5 year trial period to 14 days 2025-10-22 13:08:51 +05:00
Abdullah Atta
6d68999912 web: update refund policy to 14 days for all plans & periods as per Paddle buyer terms 2025-10-22 09:04:08 +05:00
3 changed files with 4 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ export const FEATURE_HIGHLIGHTS = [
const TRIAL_PERIODS: Record<Period, number> = {
yearly: 14,
monthly: 7,
"5-year": 30
"5-year": 14
};
export function toPricingInfo(plan: Plan, user: User | undefined): PricingInfo {

View File

@@ -55,7 +55,7 @@ type PeriodMetadata = { title: string; refundDays: number };
export const PERIOD_METADATA: Record<Period, PeriodMetadata> = {
monthly: {
title: strings.monthly(),
refundDays: 7
refundDays: 14
},
yearly: {
title: strings.yearly(),
@@ -63,7 +63,7 @@ export const PERIOD_METADATA: Record<Period, PeriodMetadata> = {
},
"5-year": {
title: "5 year",
refundDays: 30
refundDays: 14
}
};

View File

@@ -2517,7 +2517,7 @@ Use this if changes from other devices are not appearing on this device. This wi
{
question: () => t`What is your refund policy?`,
answer: () =>
t`For a monthly subscription, you can get a refund within 7 days of purchase. For a yearly subscription, we offer a full refund within 14 days of purchase. For a 5 year subscription, you can request a refund within 30 days of purchase.`
t`You can claim a refund within 14 days of purchasing your subscription.`
}
],
upgradePlanTo: (plan: string) =>