Browse Source

fix i18n

pull/307/head
Kyle Spearrin 7 years ago
parent
commit
ab9ebfb667
  1. 2
      src/app/tools/exposed-passwords-report.component.html
  2. 2
      src/app/tools/inactive-two-factor-report.component.html
  3. 2
      src/app/tools/reused-passwords-report.component.html
  4. 2
      src/app/tools/unsecured-websites-report.component.html
  5. 2
      src/app/tools/weak-passwords-report.component.html

2
src/app/tools/exposed-passwords-report.component.html

@ -8,7 +8,7 @@ @@ -8,7 +8,7 @@
</button>
<div class="mt-4" *ngIf="hasLoaded">
<app-callout type="success" title="{{'goodNews' | i18n}}" *ngIf="!ciphers.length">
{{'noExposedPasswords'}}
{{'noExposedPasswords' | i18n}}
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'exposedPasswordsFound' | i18n}}">

2
src/app/tools/inactive-two-factor-report.component.html

@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
</div>
<div class="mt-4" *ngIf="hasLoaded">
<app-callout type="success" title="{{'goodNews' | i18n}}" *ngIf="!ciphers.length">
{{'noInactive2fa'}}
{{'noInactive2fa' | i18n}}
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'inactive2faFound' | i18n}}">

2
src/app/tools/reused-passwords-report.component.html

@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
</div>
<div class="mt-4" *ngIf="hasLoaded">
<app-callout type="success" title="{{'goodNews' | i18n}}" *ngIf="!ciphers.length">
{{'noReusedPasswords'}}
{{'noReusedPasswords' | i18n}}
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'reusedPasswordsFound' | i18n}}">

2
src/app/tools/unsecured-websites-report.component.html

@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
</div>
<div class="mt-4" *ngIf="hasLoaded">
<app-callout type="success" title="{{'goodNews' | i18n}}" *ngIf="!ciphers.length">
{{'noUnsecuredWebsites'}}
{{'noUnsecuredWebsites' | i18n}}
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'unsecuredWebsitesFound' | i18n}}">

2
src/app/tools/weak-passwords-report.component.html

@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
</div>
<div class="mt-4" *ngIf="hasLoaded">
<app-callout type="success" title="{{'goodNews' | i18n}}" *ngIf="!ciphers.length">
{{'noWeakPasswords'}}
{{'noWeakPasswords' | i18n}}
</app-callout>
<ng-container *ngIf="ciphers.length">
<app-callout type="danger" title="{{'weakPasswordsFound' | i18n}}">

Loading…
Cancel
Save