1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[PM 22969]UI when MSP/BUP when subscription is canceled (#15843)

* implement cancel subscription message

* update the header message
This commit is contained in:
cyprain-okeke
2025-08-06 16:02:39 +01:00
committed by GitHub
parent 5e5a24922b
commit 6a9348ecff
2 changed files with 8 additions and 2 deletions

View File

@@ -10996,5 +10996,11 @@
},
"unlimitedSecretsAndProjects": {
"message": "Unlimited secrets and projects"
},
"providersubscriptionCanceled": {
"message": "Subscription canceled"
},
"providersubCanceledmessage": {
"message" : "To resubscribe, contact Bitwarden Customer Support."
}
}

View File

@@ -158,7 +158,7 @@ export class ProviderSubscriptionStatusComponent {
}
case "incomplete_expired":
case "canceled": {
const canceledText = this.i18nService.t("canceled");
const canceledText = this.i18nService.t("providersubscriptionCanceled");
return {
status: {
label: defaultStatusLabel,
@@ -171,7 +171,7 @@ export class ProviderSubscriptionStatusComponent {
callout: {
severity: "danger",
header: canceledText,
body: this.i18nService.t("subscriptionCanceled"),
body: this.i18nService.t("providersubCanceledmessage"),
},
};
}