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

Changes the revoke message (#14963)

This commit is contained in:
cyprain-okeke
2025-05-30 15:34:29 +01:00
committed by GitHub
parent 85cef971c6
commit 291341c987
2 changed files with 14 additions and 1 deletions

View File

@@ -160,7 +160,7 @@ export class FreeBitwardenFamiliesComponent implements OnInit {
private async doRevokeSponsorship(sponsorship: OrganizationSponsorshipInvitesResponse) { private async doRevokeSponsorship(sponsorship: OrganizationSponsorshipInvitesResponse) {
const content = sponsorship.validUntil const content = sponsorship.validUntil
? this.i18nService.t( ? this.i18nService.t(
"updatedRevokeSponsorshipConfirmationForAcceptedSponsorship", "revokeActiveSponsorshipConfirmation",
sponsorship.friendlyName, sponsorship.friendlyName,
formatDate(sponsorship.validUntil, "MM/dd/yyyy", this.locale), formatDate(sponsorship.validUntil, "MM/dd/yyyy", this.locale),
) )

View File

@@ -10651,5 +10651,18 @@
}, },
"clickPayWithPayPal": { "clickPayWithPayPal": {
"message": "Please click the Pay with PayPal button to add your payment method." "message": "Please click the Pay with PayPal button to add your payment method."
},
"revokeActiveSponsorshipConfirmation": {
"message": "If you remove $EMAIL$, the sponsorship for this Family plan will end. A seat within your organization will become available for members or sponsorships after the sponsored organization renewal date on $DATE$.",
"placeholders": {
"email": {
"content": "$1",
"example": "user@example.com"
},
"date": {
"content": "$2",
"example": "12/31/2024"
}
}
} }
} }