Skip to content

Commit 09ed0e7

Browse files
committed
Update copy for SSO modal
1 parent 178c61d commit 09ed0e7

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

src/i18n/strings/en_EN.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.": "Invalid configuration: can only specify one of default_server_config, default_server_name, or default_hs_url.",
88
"Invalid configuration: no default server specified.": "Invalid configuration: no default server specified.",
99
"Riot Desktop on %(platformName)s": "Riot Desktop on %(platformName)s",
10-
"Single sign-on": "Single sign-on",
11-
"Go to the browser to complete login": "Go to the browser to complete login",
10+
"Go to your browser to complete Sign In": "Go to your browser to complete Sign In",
1211
"Unknown device": "Unknown device",
1312
"%(appName)s via %(browserName)s on %(osName)s": "%(appName)s via %(browserName)s on %(osName)s",
1413
"You need to be using HTTPS to place a screen-sharing call.": "You need to be using HTTPS to place a screen-sharing call.",

src/vector/platform/ElectronPlatform.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -408,11 +408,8 @@ export default class ElectronPlatform extends VectorBasePlatform {
408408
startSingleSignOn(mxClient: MatrixClient, loginType: "sso" | "cas") {
409409
super.startSingleSignOn(mxClient, loginType); // this will get intercepted by electron-main will-navigate
410410
Modal.createTrackedDialog('Electron', 'SSO', InfoDialog, {
411-
title: _t("Single sign-on"),
412-
description: <div>
413-
{_t("Go to the browser to complete login")}
414-
<Spinner />
415-
</div>,
411+
title: _t("Go to your browser to complete Sign In"),
412+
description: <Spinner />,
416413
});
417414
}
418415
}

0 commit comments

Comments
 (0)