From adb0996b0002f56f888e9e7bca181a84d376456f Mon Sep 17 00:00:00 2001 From: Oskar Nyberg Date: Mon, 16 Oct 2023 14:59:28 +0200 Subject: [PATCH] Add IPv6 info dialog --- gui/src/renderer/components/VpnSettings.tsx | 26 +++++++++++++-------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/gui/src/renderer/components/VpnSettings.tsx b/gui/src/renderer/components/VpnSettings.tsx index 13a4503d7167..c884db3e5ee2 100644 --- a/gui/src/renderer/components/VpnSettings.tsx +++ b/gui/src/renderer/components/VpnSettings.tsx @@ -496,20 +496,26 @@ function EnableIpv6() { {messages.pgettext('vpn-settings-view', 'Enable IPv6')} + + + + {messages.pgettext( + 'vpn-settings-view', + 'When this feature is enabled, IPv6 can be used alongside IPv4 in the VPN tunnel to communicate with internet services.', + )} + + + {messages.pgettext( + 'vpn-settings-view', + 'IPv4 is always enabled and the majority of websites and applications use this protocol. We do not recommend enabling IPv6 unless you know you need it.', + )} + + + - - - - {messages.pgettext( - 'vpn-settings-view', - 'Enable IPv6 communication through the tunnel.', - )} - - - ); }