]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+login/login.component.ts
Fix regression blocklist-accounts icon in sub-title
[github/Chocobozzz/PeerTube.git] / client / src / app / +login / login.component.ts
index cbc51ee216132fba8e82a6e65647fd394867b7dd..e5a38221859dfe4ffd22fa0bbaf199e4c994d9bc 100644 (file)
@@ -141,7 +141,7 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni
 
   private handleError (err: any) {
     if (err.message.indexOf('credentials are invalid') !== -1) this.error = this.i18n('Incorrect username or password.')
-    else if (err.message.indexOf('blocked') !== -1) this.error = this.i18n('You account is blocked.')
+    else if (err.message.indexOf('blocked') !== -1) this.error = this.i18n('Your account is blocked.')
     else this.error = err.message
   }
 }