Merge pull request #389 from nickago/MM-1799

MM-1799 Changed wording of get link modal
Этот коммит содержится в:
Joram Wilander
2015-08-18 11:20:14 -04:00
родитель 90b492303d 773960a1d6
Коммит fda8b01297

Просмотреть файл

@@ -9,6 +9,7 @@ ZeroClipboardMixin.ZeroClipboard.config({
}); });
module.exports = React.createClass({ module.exports = React.createClass({
displayName: 'GetLinkModal',
zeroclipboardElementsSelector: '[data-copy-btn]', zeroclipboardElementsSelector: '[data-copy-btn]',
mixins: [ZeroClipboardMixin], mixins: [ZeroClipboardMixin],
componentDidMount: function() { componentDidMount: function() {
@@ -47,7 +48,10 @@ module.exports = React.createClass({
<h4 className='modal-title' id='myModalLabel'>{this.state.title} Link</h4> <h4 className='modal-title' id='myModalLabel'>{this.state.title} Link</h4>
</div> </div>
<div className='modal-body'> <div className='modal-body'>
<p>{'The link below is used for open ' + strings.TeamPlural + ' or if you allowed your ' + strings.Team + ' members to sign up using their ' + strings.Company + ' email addresses.'} <p>
Send {strings.Team + 'mates'} the link below for them to sign-up to this {strings.Team} site.
<br /><br />
Be careful not to share this link publicly, since anyone with the link can join your {strings.Team}.
</p> </p>
<textarea className='form-control no-resize' readOnly='true' value={this.state.value}></textarea> <textarea className='form-control no-resize' readOnly='true' value={this.state.value}></textarea>
</div> </div>