diff --git a/client/src/app/+login/login.component.ts b/client/src/app/+login/login.component.ts index cbc51ee21..e5a382218 100644 --- a/client/src/app/+login/login.component.ts +++ b/client/src/app/+login/login.component.ts @@ -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 } }