summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2023-01-04 10:53:37 +0100
committerOskar Nyberg <oskar@mullvad.net>2023-01-04 10:54:56 +0100
commite653cff2ca1d2b9b611c3d52a4763aa34d2a0882 (patch)
tree561024b743fe51a4a9eb53fa9a7341de5cdded6e /gui/src/shared
parent4faab6b77aebc18238bd377458eecf9f708dc44f (diff)
downloadmullvadvpn-e653cff2ca1d2b9b611c3d52a4763aa34d2a0882.tar.xz
mullvadvpn-e653cff2ca1d2b9b611c3d52a4763aa34d2a0882.zip
Change please contact support
Diffstat (limited to 'gui/src/shared')
-rw-r--r--gui/src/shared/notifications/error.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/gui/src/shared/notifications/error.ts b/gui/src/shared/notifications/error.ts
index 08462fa6db..fa1848a0fb 100644
--- a/gui/src/shared/notifications/error.ts
+++ b/gui/src/shared/notifications/error.ts
@@ -84,19 +84,19 @@ function getMessage(errorState: ErrorState): string {
case 'win32':
return messages.pgettext(
'notifications',
- 'Unable to block all network traffic. Try disabling any third-party antivirus or security software or contact support.',
+ 'Unable to block all network traffic. Try disabling any third-party antivirus or security software or send a problem report.',
);
case 'linux':
return messages.pgettext(
'notifications',
- 'Unable to block all network traffic. Try updating your kernel or contact support.',
+ 'Unable to block all network traffic. Try updating your kernel or send a problem report.',
);
}
}
return messages.pgettext(
'notifications',
- 'Unable to block all network traffic. Please troubleshoot or contact support.',
+ 'Unable to block all network traffic. Please troubleshoot or send a problem report.',
);
} else {
switch (errorState.cause) {
@@ -121,7 +121,7 @@ function getMessage(errorState: ErrorState): string {
default:
return messages.pgettext(
'auth-failure',
- 'Unable to authenticate account. Please contact support.',
+ 'Unable to authenticate account. Please send a problem report.',
);
}
case ErrorStateCause.ipv6Unavailable:
@@ -147,12 +147,12 @@ function getMessage(errorState: ErrorState): string {
case ErrorStateCause.setDnsError:
return messages.pgettext(
'notifications',
- 'Unable to set system DNS server. Please contact support.',
+ 'Unable to set system DNS server. Please send a problem report.',
);
case ErrorStateCause.startTunnelError:
return messages.pgettext(
'notifications',
- 'Unable to start tunnel connection. Please contact support.',
+ 'Unable to start tunnel connection. Please send a problem report.',
);
case ErrorStateCause.tunnelParameterError:
return getTunnelParameterMessage(errorState.parameterError);
@@ -164,7 +164,7 @@ function getMessage(errorState: ErrorState): string {
case ErrorStateCause.splitTunnelError:
return messages.pgettext(
'notifications',
- 'Unable to communicate with Mullvad kernel driver. Try reconnecting or contact support.',
+ 'Unable to communicate with Mullvad kernel driver. Try reconnecting or send a problem report.',
);
}
}