1
0
mirror of https://github.com/bitwarden/web synced 2025-12-27 05:33:19 +00:00

Add latest copy

This commit is contained in:
Justin Baur
2021-11-24 10:40:40 -05:00
parent 95fa0461e6
commit 670403b4d9
2 changed files with 11 additions and 1 deletions

View File

@@ -158,13 +158,20 @@
<label class="form-check-label" for="interval{{selectablePlan.type}}">
<ng-container *ngIf="selectablePlan.isAnnual">
{{'annually' | i18n}}
<small *ngIf="selectablePlan.basePrice">
<small *ngIf="selectablePlan.basePrice && !acceptingSponsorship">
{{'basePrice' | i18n}}: {{ selectablePlan.basePrice / 12 | currency:'$'}} &times; 12
{{'monthAbbr' | i18n}}
=
{{selectablePlan.basePrice | currency:'$'}}
/{{'year' | i18n}}
</small>
<small *ngIf="acceptingSponsorship">
{{'basePrice' | i18n}}: {{ 40 / 12 | currency:'$'}} $times; 12
{{'monthAbbr' | i18n}}
=
<span style="text-decoration: line-through;">{{40 | currency:'$'}}</span>
{{'freeWithSponsorship' | i18n}}
</small>
<small *ngIf="selectablePlan.hasAdditionalSeatsOption">
<span *ngIf="selectablePlan.baseSeats">{{'additionalUsers' | i18n}}:</span>
<span *ngIf="!selectablePlan.baseSeats">{{'users' | i18n}}:</span>

View File

@@ -4724,5 +4724,8 @@
},
"sponsorshipTokenHasExpired": {
"message": "The sponsorship offer has expired."
},
"freeWithSponsorship": {
"message": "FREE with sponsorship"
}
}