From afa4456c1a52b1dde78aa2ffb7b89000e6212392 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Sun, 28 Jun 2020 16:11:00 +0200 Subject: fix typo in blocked notice in login --- client/src/app/+login/login.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') 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 } } -- cgit v1.2.3