diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json index 21149499485..7e26884c99a 100644 --- a/apps/browser/src/_locales/en/messages.json +++ b/apps/browser/src/_locales/en/messages.json @@ -5818,8 +5818,8 @@ "andMoreFeatures": { "message": "And more!" }, - "planDescPremium": { - "message": "Complete online security" + "advancedOnlineSecurity": { + "message": "Advanced online security" }, "upgradeToPremium": { "message": "Upgrade to Premium" diff --git a/apps/desktop/src/locales/en/messages.json b/apps/desktop/src/locales/en/messages.json index 6bef882d970..7fde2bfe99e 100644 --- a/apps/desktop/src/locales/en/messages.json +++ b/apps/desktop/src/locales/en/messages.json @@ -4212,8 +4212,8 @@ "andMoreFeatures": { "message": "And more!" }, - "planDescPremium": { - "message": "Complete online security" + "advancedOnlineSecurity": { + "message": "Advanced online security" }, "upgradeToPremium": { "message": "Upgrade to Premium" diff --git a/apps/web/src/app/billing/individual/premium/cloud-hosted-premium-vnext.component.html b/apps/web/src/app/billing/individual/premium/cloud-hosted-premium-vnext.component.html index 6b168901b2e..e182659acbb 100644 --- a/apps/web/src/app/billing/individual/premium/cloud-hosted-premium-vnext.component.html +++ b/apps/web/src/app/billing/individual/premium/cloud-hosted-premium-vnext.component.html @@ -21,7 +21,7 @@
@if (premiumCardData$ | async; as premiumData) { { return "Custom"; // Plan descriptions - case "planDescPremium": + case "advancedOnlineSecurity": return "Premium plan description"; case "planDescFamiliesV2": return "Families plan description"; @@ -393,7 +393,7 @@ describe("DefaultSubscriptionPricingService", () => { }); expect(i18nService.t).toHaveBeenCalledWith("premium"); - expect(i18nService.t).toHaveBeenCalledWith("planDescPremium"); + expect(i18nService.t).toHaveBeenCalledWith("advancedOnlineSecurity"); expect(i18nService.t).toHaveBeenCalledWith("planNameFamilies"); expect(i18nService.t).toHaveBeenCalledWith("planDescFamiliesV2"); expect(i18nService.t).toHaveBeenCalledWith("builtInAuthenticator"); diff --git a/libs/common/src/billing/services/subscription-pricing.service.ts b/libs/common/src/billing/services/subscription-pricing.service.ts index f1502eb26e8..3452118fccb 100644 --- a/libs/common/src/billing/services/subscription-pricing.service.ts +++ b/libs/common/src/billing/services/subscription-pricing.service.ts @@ -124,7 +124,7 @@ export class DefaultSubscriptionPricingService implements SubscriptionPricingSer map((premiumPrices) => ({ id: PersonalSubscriptionPricingTierIds.Premium, name: this.i18nService.t("premium"), - description: this.i18nService.t("planDescPremium"), + description: this.i18nService.t("advancedOnlineSecurity"), availableCadences: [SubscriptionCadenceIds.Annually], passwordManager: { type: "standalone",