diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-10-29 17:09:17 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-10-30 12:49:20 +0100 |
| commit | 30dbf8a95be369060bbbb162f5f2ffd3159f321d (patch) | |
| tree | beed4aab7391d18f8ef9f44dd7f6756322809fda /gui | |
| parent | dcfc8d636a8352f576581bd26a2defc50f3c80ca (diff) | |
| download | mullvadvpn-30dbf8a95be369060bbbb162f5f2ffd3159f321d.tar.xz mullvadvpn-30dbf8a95be369060bbbb162f5f2ffd3159f321d.zip | |
Improve help texts on auto-connect/auto-start
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/packages/desktop/src/renderer/components/Preferences.js | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gui/packages/desktop/src/renderer/components/Preferences.js b/gui/packages/desktop/src/renderer/components/Preferences.js index b9f923c7e1..9409432563 100644 --- a/gui/packages/desktop/src/renderer/components/Preferences.js +++ b/gui/packages/desktop/src/renderer/components/Preferences.js @@ -52,13 +52,17 @@ export default class Preferences extends Component<PreferencesProps, State> { <Cell.Label>Auto-connect</Cell.Label> <Switch isOn={this.props.autoConnect} onChange={this.props.setAutoConnect} /> </Cell.Container> - <Cell.Footer>Automatically connect the VPN when the computer starts.</Cell.Footer> + <Cell.Footer> + Automatically connect to the VPN at the earliest moment during computer boot-up. + </Cell.Footer> <Cell.Container> - <Cell.Label>Auto-start</Cell.Label> + <Cell.Label>Auto-launch</Cell.Label> <Switch isOn={this.state.autoStart} onChange={this._onChangeAutoStart} /> </Cell.Container> - <Cell.Footer>Automatically open Mullvad VPN at login to the system.</Cell.Footer> + <Cell.Footer> + Automatically launch the app when logging in to the computer. + </Cell.Footer> <Cell.Container> <Cell.Label>Local network sharing</Cell.Label> |
