Update help text on Settings page

This commit is contained in:
Jason Blais 2017-02-12 17:26:34 -05:00 committed by GitHub
parent 035800387b
commit 4d2a95cd32

View file

@ -194,7 +194,7 @@ const SettingsPage = React.createClass({
onChange={this.handleChangeAutoStart} onChange={this.handleChangeAutoStart}
>{'Start app on login'} >{'Start app on login'}
<HelpBlock> <HelpBlock>
{'Enabling automatically starts the app when you log in to your machine.'} {'If enabled, the app starts automatically when you log in to your machine.'}
{' '} {' '}
{'The app will initially start minimized and appear on the taskbar.'} {'The app will initially start minimized and appear on the taskbar.'}
</HelpBlock> </HelpBlock>
@ -210,9 +210,9 @@ const SettingsPage = React.createClass({
onChange={this.handleChangeDisableWebSecurity} onChange={this.handleChangeDisableWebSecurity}
>{'Display secure content only'} >{'Display secure content only'}
<HelpBlock> <HelpBlock>
{'Enabling allows only secure (HTTPS/SSL) content.'} {'If enabled, the app only displays secure (HTTPS/SSL) content.'}
{' '} {' '}
{'Disabling allows the app to display non-secure (HTTP) content such as images.'} {'If disabled, the app displays secure and non-secure (HTTP) content such as images.'}
</HelpBlock> </HelpBlock>
</Checkbox>); </Checkbox>);
@ -241,7 +241,7 @@ const SettingsPage = React.createClass({
onChange={this.handleFlashWindow} onChange={this.handleFlashWindow}
>{'Flash taskbar icon when a new message is received'} >{'Flash taskbar icon when a new message is received'}
<HelpBlock> <HelpBlock>
{'Taskbar icon flashes for a few seconds when a new message is received.'} {'If enabled, taskbar icon flashes for a few seconds when a new message is received.'}
</HelpBlock> </HelpBlock>
</Checkbox>); </Checkbox>);
} }
@ -304,7 +304,7 @@ const SettingsPage = React.createClass({
> >
{'Leave app running in notification area when application window is closed'} {'Leave app running in notification area when application window is closed'}
<HelpBlock> <HelpBlock>
{'Enabling will leave the app running in the notification center when app window is closed.'} {'If enabled, the app stays running in the notification area after app window is closed.'}
{this.state.trayWasVisible || !this.state.showTrayIcon ? '' : ' Setting takes effect after restarting the app.'} {this.state.trayWasVisible || !this.state.showTrayIcon ? '' : ' Setting takes effect after restarting the app.'}
</HelpBlock> </HelpBlock>
</Checkbox>); </Checkbox>);