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:
parent
7d47ea294f
commit
001f1d4ccb
@ -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 }} × {{ options.seatPrice | currency }} =
|
{{ formGroup.value.seatCount || 0 }} × {{ 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 }} × {{ options.seatPrice | currency }} =
|
{{ formGroup.value.seatLimit || 0 }} × {{ 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 }} ×
|
{{ formGroup.value.serviceAccountCount || 0 }} ×
|
||||||
{{ 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 }} ×
|
{{ formGroup.value.serviceAccountLimit || 0 }} ×
|
||||||
{{ 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>
|
||||||
|
Loading…
Reference in New Issue
Block a user