X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Blogin%2Flogin.component.ts;h=e5a38221859dfe4ffd22fa0bbaf199e4c994d9bc;hb=a7eaeae1dcbb59be05b08798a3c8f2777e76d0da;hp=cbc51ee216132fba8e82a6e65647fd394867b7dd;hpb=1942f11d5ee6926ad93dc1b79fae18325ba5de18;p=github%2FChocobozzz%2FPeerTube.git 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 } }