From ab9ebfb667c981decb081ea40e894ad97c196acb Mon Sep 17 00:00:00 2001
From: Kyle Spearrin <kyle.spearrin@gmail.com>
Date: Wed, 12 Dec 2018 09:30:57 -0500
Subject: [PATCH] fix i18n

---
 src/app/tools/exposed-passwords-report.component.html   | 2 +-
 src/app/tools/inactive-two-factor-report.component.html | 2 +-
 src/app/tools/reused-passwords-report.component.html    | 2 +-
 src/app/tools/unsecured-websites-report.component.html  | 2 +-
 src/app/tools/weak-passwords-report.component.html      | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/app/tools/exposed-passwords-report.component.html b/src/app/tools/exposed-passwords-report.component.html
index 3392080873..a42f1a5d56 100644
--- a/src/app/tools/exposed-passwords-report.component.html
+++ b/src/app/tools/exposed-passwords-report.component.html
@@ -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}}">
diff --git a/src/app/tools/inactive-two-factor-report.component.html b/src/app/tools/inactive-two-factor-report.component.html
index d1df248f5b..76235efb88 100644
--- a/src/app/tools/inactive-two-factor-report.component.html
+++ b/src/app/tools/inactive-two-factor-report.component.html
@@ -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}}">
diff --git a/src/app/tools/reused-passwords-report.component.html b/src/app/tools/reused-passwords-report.component.html
index b099e60186..6d869d71fe 100644
--- a/src/app/tools/reused-passwords-report.component.html
+++ b/src/app/tools/reused-passwords-report.component.html
@@ -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}}">
diff --git a/src/app/tools/unsecured-websites-report.component.html b/src/app/tools/unsecured-websites-report.component.html
index b128c3dd2d..8c7eb208d4 100644
--- a/src/app/tools/unsecured-websites-report.component.html
+++ b/src/app/tools/unsecured-websites-report.component.html
@@ -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}}">
diff --git a/src/app/tools/weak-passwords-report.component.html b/src/app/tools/weak-passwords-report.component.html
index 9768cc5a78..a1d979eedb 100644
--- a/src/app/tools/weak-passwords-report.component.html
+++ b/src/app/tools/weak-passwords-report.component.html
@@ -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}}">