From d5af2d2c52b9072cbdc5d096b6d8103e4348fd3f Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 29 Sep 2016 17:38:52 +0100 Subject: [PATCH] Use 'Sign In' / 'Sign Out' universally Rather than a mix of 'sign in/out' and 'log in/out' --- src/components/structures/MatrixChat.js | 4 ++-- src/components/structures/UserSettings.js | 2 +- src/components/structures/login/ForgotPassword.js | 4 ++-- src/components/views/login/CustomServerDialog.js | 2 +- src/components/views/login/PasswordLogin.js | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js index 47d316e966a..30d2a9ef5fe 100644 --- a/src/components/structures/MatrixChat.js +++ b/src/components/structures/MatrixChat.js @@ -667,8 +667,8 @@ module.exports = React.createClass({ cli.on('Session.logged_out', function(call) { var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createDialog(ErrorDialog, { - title: "Logged Out", - description: "For security, this session has been logged out. Please log in again." + title: "Signed Out", + description: "For security, this session has been signed out. Please sign in again." }); dis.dispatch({ action: 'logout' diff --git a/src/components/structures/UserSettings.js b/src/components/structures/UserSettings.js index 6836987823a..58c8815492a 100644 --- a/src/components/structures/UserSettings.js +++ b/src/components/structures/UserSettings.js @@ -560,7 +560,7 @@ module.exports = React.createClass({
- Log out + Sign out
{accountJsx} diff --git a/src/components/structures/login/ForgotPassword.js b/src/components/structures/login/ForgotPassword.js index feb4ee96b1b..905936b8f67 100644 --- a/src/components/structures/login/ForgotPassword.js +++ b/src/components/structures/login/ForgotPassword.js @@ -147,7 +147,7 @@ module.exports = React.createClass({

Your password has been reset.

You have been logged out of all devices and will no longer receive push notifications. - To re-enable notifications, re-log in on each device.

+ To re-enable notifications, sign in again on each device.

@@ -188,7 +188,7 @@ module.exports = React.createClass({ onIsUrlChanged={this.onIsUrlChanged} delayTimeMs={0}/>
-
+
Return to login diff --git a/src/components/views/login/CustomServerDialog.js b/src/components/views/login/CustomServerDialog.js index 92b6c54ac15..e6450adef14 100644 --- a/src/components/views/login/CustomServerDialog.js +++ b/src/components/views/login/CustomServerDialog.js @@ -27,7 +27,7 @@ module.exports = React.createClass({
- You can use the custom server options to log into other Matrix + You can use the custom server options to sign into other Matrix servers by specifying a different Home server URL.
This allows you to use this app with an existing Matrix account on diff --git a/src/components/views/login/PasswordLogin.js b/src/components/views/login/PasswordLogin.js index 1a40ddde6bf..576745886ab 100644 --- a/src/components/views/login/PasswordLogin.js +++ b/src/components/views/login/PasswordLogin.js @@ -104,7 +104,7 @@ module.exports = React.createClass({displayName: 'PasswordLogin', placeholder="Password" />
{forgotPasswordJsx} - +
);