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:
@@ -10996,5 +10996,11 @@
|
||||
},
|
||||
"unlimitedSecretsAndProjects": {
|
||||
"message": "Unlimited secrets and projects"
|
||||
},
|
||||
"providersubscriptionCanceled": {
|
||||
"message": "Subscription canceled"
|
||||
},
|
||||
"providersubCanceledmessage": {
|
||||
"message" : "To resubscribe, contact Bitwarden Customer Support."
|
||||
}
|
||||
}
|
||||
@@ -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"),
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user