1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Update text to change auth flows

This commit is contained in:
J. Ryan Stinnett
2019-01-23 14:33:56 -06:00
parent 9b3d674a92
commit f069833ad9
4 changed files with 6 additions and 5 deletions

View File

@@ -257,7 +257,7 @@ module.exports = React.createClass({
{ serverConfigSection }
{ errorText }
<a className="mx_Auth_changeFlow" onClick={this.onLoginClick} href="#">
{ _t('Return to login screen') }
{ _t('Sign in instead') }
</a>
</div>
</div>

View File

@@ -565,7 +565,7 @@ module.exports = React.createClass({
{ this.componentForStep(this.state.currentFlow) }
{ serverConfig }
<a className="mx_Auth_changeFlow" onClick={this.onRegisterClick} href="#">
{ _t('Create an account') }
{ _t('Create account') }
</a>
{ loginAsGuestJsx }
</AuthBody>

View File

@@ -466,7 +466,7 @@ module.exports = React.createClass({
if (!this.state.doingUIAuth) {
signIn = (
<a className="mx_Auth_changeFlow" onClick={this.onLoginClick} href="#">
{ _t('I already have an account') }
{ _t('Sign in instead') }
</a>
);
}