summaryrefslogtreecommitdiffhomepage
path: root/gui/src
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
parent4faab6b77aebc18238bd377458eecf9f708dc44f (diff)
downloadmullvadvpn-e653cff2ca1d2b9b611c3d52a4763aa34d2a0882.tar.xz
mullvadvpn-e653cff2ca1d2b9b611c3d52a4763aa34d2a0882.zip
Change please contact support
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/main/linux-split-tunneling.ts6
-rw-r--r--gui/src/shared/notifications/error.ts14
2 files changed, 10 insertions, 10 deletions
diff --git a/gui/src/main/linux-split-tunneling.ts b/gui/src/main/linux-split-tunneling.ts
index cb8bd9e740..c8e5dd527a 100644
--- a/gui/src/main/linux-split-tunneling.ts
+++ b/gui/src/main/linux-split-tunneling.ts
@@ -60,7 +60,7 @@ export async function launchApplication(
error:
// TRANSLATORS: This error message is shown if the user tries to launch an app that
// TRANSLATORS: doesn't exist.
- messages.pgettext('split-tunneling-view', 'Please try again or contact support.'),
+ messages.pgettext('split-tunneling-view', 'Please try again or send a problem report.'),
});
}
});
@@ -72,7 +72,7 @@ export async function launchApplication(
resolve({
error:
// TRANSLATORS: This error message is shown if an application failes during startup.
- messages.pgettext('split-tunneling-view', 'Please try again or contact support.'),
+ messages.pgettext('split-tunneling-view', 'Please try again or send a problem report.'),
});
} else {
resolve({ success: true });
@@ -93,7 +93,7 @@ async function getLaunchCommand(app: ILinuxSplitTunnelingApplication | string):
throw new Error(
// TRANSLATORS: This error message is shown if the user tries to launch a Linux desktop
// TRANSLATORS: entry file that doesn't contain the required 'Exec' value.
- messages.pgettext('split-tunneling-view', 'Please contact support.'),
+ messages.pgettext('split-tunneling-view', 'Please send a problem report.'),
);
}
} else {
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.',
);
}
}