mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
Internationalize + add back old message
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
ff8417dfe2
commit
355468b637
@ -40,13 +40,13 @@ export class PasswordLoginViewModel extends ViewModel {
|
||||
let error = "";
|
||||
switch (status) {
|
||||
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;
|
||||
case LoginFailure.Connection:
|
||||
error = `Can't connect to ${this._homeserver}.`;
|
||||
error = this.i18n`Can't connect to ${this._homeserver}.`;
|
||||
break;
|
||||
case LoginFailure.Unknown:
|
||||
error = `Something went wrong while checking your credentials.`;
|
||||
error = this.i18n`Something went wrong while checking your login and password.`;
|
||||
break;
|
||||
}
|
||||
if (error) {
|
||||
|
Loading…
Reference in New Issue
Block a user