diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-07-05 09:24:23 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-07-05 09:41:25 +0200 |
| commit | f49244054d0b18615f6a54f76d0bf40f1d2b19bf (patch) | |
| tree | 554725123b456966f421f195ff3005c9ea6f4385 /gui/src | |
| parent | f4b834b66438db8fa40bbce29a40fa3178c12da1 (diff) | |
| download | mullvadvpn-f49244054d0b18615f6a54f76d0bf40f1d2b19bf.tar.xz mullvadvpn-f49244054d0b18615f6a54f76d0bf40f1d2b19bf.zip | |
Improve help text shown around "Block when disconnected"
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/renderer/components/AdvancedSettings.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gui/src/renderer/components/AdvancedSettings.tsx b/gui/src/renderer/components/AdvancedSettings.tsx index e6c750175c..0285f2d829 100644 --- a/gui/src/renderer/components/AdvancedSettings.tsx +++ b/gui/src/renderer/components/AdvancedSettings.tsx @@ -170,7 +170,15 @@ export default class AdvancedSettings extends Component<IProps, IState> { <Cell.Footer> {messages.pgettext( 'advanced-settings-view', - "Unless connected, always block all network traffic, even when you've disconnected or quit the app.", + "Unless connected to Mullvad, this setting will completely block your internet, even when you have quit the app.", + )} + {this.props.blockWhenDisconnected ? ( + messages.pgettext( + 'advanced-settings-view', + "\n\nWarning: Your internet won't work without a VPN connection, even when you've quit the app. Unless connected to Mullvad, this setting will completely block your internet, even when you have quit the app.", + ) + ) : ( + undefined )} </Cell.Footer> |
