Skip to content

Commit

Permalink
Language fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Murali Suresh committed Jan 26, 2017
1 parent fa95c46 commit 6347b4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions reactJS/app/components/RegisterComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,12 +552,12 @@ class RegisterComponent extends Component {
<div className='col-xs-12' style={{
marginTop: 12
}}>
<FlatButton label="Back" disabled={this.props.stepIndex === 0} onTouchTap={this.stepDecrease} style={{
<FlatButton label={this.props.languageJson.back} disabled={this.props.stepIndex === 0} onTouchTap={this.stepDecrease} style={{
marginRight: 12
}}/>
<RaisedButton label={this.props.stepIndex === 2
? 'Register'
: 'Next'} primary={true} onTouchTap={this.stepIncrease}/>
? this.props.languageJson.register
: this.props.languageJson.next} primary={true} onTouchTap={this.stepIncrease}/>
</div>
</div>

Expand Down

0 comments on commit 6347b4f

Please sign in to comment.