From 683d2c21eb7d4971050dc18314cc3e43dd7f659b Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Sun, 15 Aug 2021 12:26:45 +0530 Subject: [PATCH] Use generic language in session load status Signed-off-by: RMidhunSuresh --- src/domain/SessionLoadViewModel.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/domain/SessionLoadViewModel.js b/src/domain/SessionLoadViewModel.js index 83bf5966..80837677 100644 --- a/src/domain/SessionLoadViewModel.js +++ b/src/domain/SessionLoadViewModel.js @@ -114,15 +114,15 @@ export class SessionLoadViewModel extends ViewModel { case LoadStatus.NotLoading: return `Preparing…`; case LoadStatus.Login: - return `Checking your login and password…`; + return `Checking your credentials…`; case LoadStatus.LoginFailed: switch (sc.loginFailure) { case LoginFailure.LoginFailure: - return `Your username and/or password don't seem to be correct.`; + return `Your credentials don't seem to be correct.`; case LoginFailure.Connection: return `Can't connect to ${this._homeserver}.`; case LoginFailure.Unknown: - return `Something went wrong while checking your login and password.`; + return `Something went wrong while checking your credentials.`; } break; case LoadStatus.SessionSetup: