1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

format numbers

This commit is contained in:
Kyle Spearrin 2018-12-12 08:54:52 -05:00
parent 5a504b00fb
commit 603a1ef046
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'reusedPasswordsFound' | i18n}}">
{{'reusedPasswordsFoundDesc' | i18n : ciphers.length}}
{{'reusedPasswordsFoundDesc' | i18n : (ciphers.length | number)}}
</app-callout>
<table class="table table-hover table-list table-ciphers">
<tbody>

View File

@ -16,7 +16,7 @@
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'unsecuredWebsitesFound' | i18n}}">
{{'unsecuredWebsitesFoundDesc' | i18n : ciphers.length}}
{{'unsecuredWebsitesFoundDesc' | i18n : (ciphers.length | number)}}
</app-callout>
<table class="table table-hover table-list table-ciphers">
<tbody>

View File

@ -16,7 +16,7 @@
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'weakPasswordsFound' | i18n}}">
{{'weakPasswordsFoundDesc' | i18n : ciphers.length}}
{{'weakPasswordsFoundDesc' | i18n : (ciphers.length | number)}}
</app-callout>
<table class="table table-hover table-list table-ciphers">
<tbody>