summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2019-08-11 14:25:48 +0100
committerEmīls Piņķis <emils@mullvad.net>2019-08-11 22:09:11 +0100
commit13964eb5b819cd91371aa78264592b602c177585 (patch)
treedee2d25569ec40b5311c41e4500d24b33a8b140b /gui/src
parent1d811234bbbddc5c94ac0a96456422afc509e943 (diff)
downloadmullvadvpn-13964eb5b819cd91371aa78264592b602c177585.tar.xz
mullvadvpn-13964eb5b819cd91371aa78264592b602c177585.zip
Improve wireguard key error message
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/NotificationArea.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/renderer/components/NotificationArea.tsx b/gui/src/renderer/components/NotificationArea.tsx
index 78cc013f4d..9e4c971a89 100644
--- a/gui/src/renderer/components/NotificationArea.tsx
+++ b/gui/src/renderer/components/NotificationArea.tsx
@@ -52,7 +52,7 @@ function getTunnelParameterMessage(err: TunnelParameterError): string {
case 'no_wireguard_key':
return messages.pgettext(
'in-app-notifications',
- 'WireGuard key not set. You can generate one manually in the advanced settings.',
+ 'WireGuard key not published to our servers. You can manage your key in Advanced settings.',
);
break;
case 'custom_tunnel_host_resultion_error':