Merge pull request #506 from matrix-org/dbkr/sign_in_not_log_in

Use 'Sign In' / 'Sign Out' universally
This commit is contained in:
Richard van der Hoff 2016-09-30 11:30:00 +01:00 committed by GitHub
commit dca19a4940
5 changed files with 7 additions and 7 deletions

View file

@ -667,8 +667,8 @@ module.exports = React.createClass({
cli.on('Session.logged_out', function(call) { cli.on('Session.logged_out', function(call) {
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createDialog(ErrorDialog, { Modal.createDialog(ErrorDialog, {
title: "Logged Out", title: "Signed Out",
description: "For security, this session has been logged out. Please log in again." description: "For security, this session has been signed out. Please sign in again."
}); });
dis.dispatch({ dis.dispatch({
action: 'logout' action: 'logout'

View file

@ -560,7 +560,7 @@ module.exports = React.createClass({
<div className="mx_UserSettings_section"> <div className="mx_UserSettings_section">
<div className="mx_UserSettings_logout mx_UserSettings_button" onClick={this.onLogoutClicked}> <div className="mx_UserSettings_logout mx_UserSettings_button" onClick={this.onLogoutClicked}>
Log out Sign out
</div> </div>
{accountJsx} {accountJsx}

View file

@ -147,7 +147,7 @@ module.exports = React.createClass({
<div> <div>
<p>Your password has been reset.</p> <p>Your password has been reset.</p>
<p>You have been logged out of all devices and will no longer receive push notifications. <p>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.</p> To re-enable notifications, sign in again on each device.</p>
<input className="mx_Login_submit" type="button" onClick={this.props.onComplete} <input className="mx_Login_submit" type="button" onClick={this.props.onComplete}
value="Return to login screen" /> value="Return to login screen" />
</div> </div>

View file

@ -27,7 +27,7 @@ module.exports = React.createClass({
</div> </div>
<div className="mx_Dialog_content"> <div className="mx_Dialog_content">
<span> <span>
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. servers by specifying a different Home server URL.
<br/> <br/>
This allows you to use this app with an existing Matrix account on This allows you to use this app with an existing Matrix account on

View file

@ -104,7 +104,7 @@ module.exports = React.createClass({displayName: 'PasswordLogin',
placeholder="Password" /> placeholder="Password" />
<br /> <br />
{forgotPasswordJsx} {forgotPasswordJsx}
<input className="mx_Login_submit" type="submit" value="Log in" /> <input className="mx_Login_submit" type="submit" value="Sign in" />
</form> </form>
</div> </div>
); );