summaryrefslogtreecommitdiffhomepage
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/src/renderer/components/AdvancedSettings.tsx10
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>