forked from mystiq/hydrogen-web
Internationalize + add back old message
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
ff8417dfe2
commit
355468b637
1 changed files with 3 additions and 3 deletions
|
@ -40,13 +40,13 @@ export class PasswordLoginViewModel extends ViewModel {
|
||||||
let error = "";
|
let error = "";
|
||||||
switch (status) {
|
switch (status) {
|
||||||
case LoginFailure.Credentials:
|
case LoginFailure.Credentials:
|
||||||
error = `Your credentials don't seem to be correct.`;
|
error = this.i18n`Your username and/or password don't seem to be correct.`;
|
||||||
break;
|
break;
|
||||||
case LoginFailure.Connection:
|
case LoginFailure.Connection:
|
||||||
error = `Can't connect to ${this._homeserver}.`;
|
error = this.i18n`Can't connect to ${this._homeserver}.`;
|
||||||
break;
|
break;
|
||||||
case LoginFailure.Unknown:
|
case LoginFailure.Unknown:
|
||||||
error = `Something went wrong while checking your credentials.`;
|
error = this.i18n`Something went wrong while checking your login and password.`;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (error) {
|
if (error) {
|
||||||
|
|
Loading…
Reference in a new issue