Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2017-10-05 08:00:22 +01:00
parent 7492f2dffa
commit 38de4ae152
No known key found for this signature in database
GPG Key ID: 0435A1D4BBD34D64
1 changed files with 7 additions and 7 deletions

View File

@ -48,21 +48,21 @@ export default React.createClass({
> >
<div className="mx_Dialog_content"> <div className="mx_Dialog_content">
<div className="mx_CreateRoomDialog_label"> <div className="mx_CreateRoomDialog_label">
<label htmlFor="textinput"> {_t('Room name (optional)')} </label> <label htmlFor="textinput"> { _t('Room name (optional)') } </label>
</div> </div>
<div> <div>
<input id="textinput" ref="textinput" className="mx_CreateRoomDialog_input" autoFocus={true} size="64" onKeyDown={this.onKeyDown}/> <input id="textinput" ref="textinput" className="mx_CreateRoomDialog_input" autoFocus={true} size="64" onKeyDown={this.onKeyDown} />
</div> </div>
<br/> <br />
<details className="mx_CreateRoomDialog_details"> <details className="mx_CreateRoomDialog_details">
<summary className="mx_CreateRoomDialog_details_summary">{ _t('Advanced options') }</summary> <summary className="mx_CreateRoomDialog_details_summary">{ _t('Advanced options') }</summary>
<div> <div>
<input type="checkbox" id="checkbox" ref="checkbox" defaultChecked={this.defaultNoFederate}/> <input type="checkbox" id="checkbox" ref="checkbox" defaultChecked={this.defaultNoFederate} />
<label htmlFor="checkbox"> <label htmlFor="checkbox">
{_t('Block users on other matrix homeservers from joining this room')} { _t('Block users on other matrix homeservers from joining this room') }
<br/> <br />
({_t('This setting cannot be changed later!')}) ({ _t('This setting cannot be changed later!') })
</label> </label>
</div> </div>
</details> </details>