1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-02 13:23:29 +01:00

[AC-1418] Add missing currency codes

This commit is contained in:
Shane Melton 2023-06-28 13:58:41 -07:00
parent 7d47ea294f
commit 001f1d4ccb
No known key found for this signature in database

View File

@ -4,8 +4,8 @@
<input bitInput id="smSeatCount" formControlName="seatCount" type="number" step="1" min="1" /> <input bitInput id="smSeatCount" formControlName="seatCount" type="number" step="1" min="1" />
<bit-hint> <bit-hint>
<strong>{{ "total" | i18n }}:</strong> <strong>{{ "total" | i18n }}:</strong>
{{ formGroup.value.seatCount || 0 }} &times; {{ options.seatPrice | currency }} = {{ formGroup.value.seatCount || 0 }} &times; {{ options.seatPrice | currency : "$" }} =
{{ seatTotal | currency }} / {{ options.interval | i18n }} {{ seatTotal | currency : "$" }} / {{ options.interval | i18n }}
</bit-hint> </bit-hint>
</bit-form-field> </bit-form-field>
<bit-form-control> <bit-form-control>
@ -27,8 +27,8 @@
/> />
<bit-hint> <bit-hint>
<strong>{{ "maxSeatCost" | i18n }}:</strong> <strong>{{ "maxSeatCost" | i18n }}:</strong>
{{ formGroup.value.seatLimit || 0 }} &times; {{ options.seatPrice | currency }} = {{ formGroup.value.seatLimit || 0 }} &times; {{ options.seatPrice | currency : "$" }} =
{{ maxSeatTotal | currency }} / {{ options.interval | i18n }} {{ maxSeatTotal | currency : "$" }} / {{ options.interval | i18n }}
</bit-hint> </bit-hint>
</bit-form-field> </bit-form-field>
<bit-form-field class="tw-w-2/3"> <bit-form-field class="tw-w-2/3">
@ -45,14 +45,14 @@
<div> <div>
{{ {{
"additionalServiceAccountsDesc" "additionalServiceAccountsDesc"
| i18n : options.baseServiceAccountCount : (monthlyServiceAccountPrice | currency) | i18n : options.baseServiceAccountCount : (monthlyServiceAccountPrice | currency : "$")
}} }}
</div> </div>
<div> <div>
<strong>{{ "total" | i18n }}:</strong> <strong>{{ "total" | i18n }}:</strong>
{{ formGroup.value.serviceAccountCount || 0 }} &times; {{ formGroup.value.serviceAccountCount || 0 }} &times;
{{ options.additionalServiceAccountPrice | currency }} = {{ options.additionalServiceAccountPrice | currency : "$" }} =
{{ serviceAccountTotal | currency }} / {{ options.interval | i18n }} {{ serviceAccountTotal | currency : "$" }} / {{ options.interval | i18n }}
</div> </div>
</bit-hint> </bit-hint>
</bit-form-field> </bit-form-field>
@ -81,8 +81,8 @@
<bit-hint> <bit-hint>
<strong>{{ "maxServiceAccountCost" | i18n }}:</strong> <strong>{{ "maxServiceAccountCost" | i18n }}:</strong>
{{ formGroup.value.serviceAccountLimit || 0 }} &times; {{ formGroup.value.serviceAccountLimit || 0 }} &times;
{{ options.additionalServiceAccountPrice | currency }} = {{ options.additionalServiceAccountPrice | currency : "$" }} =
{{ maxServiceAccountTotal | currency }} / {{ options.interval | i18n }} {{ maxServiceAccountTotal | currency : "$" }} / {{ options.interval | i18n }}
</bit-hint> </bit-hint>
</bit-form-field> </bit-form-field>
<button type="submit" bitButton buttonType="primary" bitFormButton> <button type="submit" bitButton buttonType="primary" bitFormButton>