diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2023-02-06 18:47:55 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2023-02-21 18:45:59 +0100 |
| commit | 60d51ec8cd14a965ffbcc4e0112c3351f1fc1cef (patch) | |
| tree | 2b204403721638a0eec69c52af8ed70d3b2c75b7 | |
| parent | 68b96d792092acf0e5127684201a85d7628c0632 (diff) | |
| download | mullvadvpn-60d51ec8cd14a965ffbcc4e0112c3351f1fc1cef.tar.xz mullvadvpn-60d51ec8cd14a965ffbcc4e0112c3351f1fc1cef.zip | |
Clarify some notification messages
| -rw-r--r-- | gui/src/shared/notifications/error.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/src/shared/notifications/error.ts b/gui/src/shared/notifications/error.ts index 67267a494e..7134f0ec36 100644 --- a/gui/src/shared/notifications/error.ts +++ b/gui/src/shared/notifications/error.ts @@ -91,7 +91,7 @@ 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 send a problem report.', + 'Unable to block all network traffic. Try temporarily disabling any third-party antivirus or security software or send a problem report.', ); case 'linux': return messages.pgettext( @@ -141,7 +141,7 @@ function getMessage(errorState: ErrorState): string { case 'win32': return messages.pgettext( 'notifications', - 'Unable to apply firewall rules. Try disabling any third-party antivirus or security software.', + 'Unable to apply firewall rules. Try temporarily disabling any third-party antivirus or security software.', ); case 'linux': return messages.pgettext( @@ -184,7 +184,7 @@ function getTunnelParameterMessage(error: TunnelParameterError): string { case TunnelParameterError.noMatchingRelay: return messages.pgettext( 'notifications', - 'No servers in your selected location match your settings.', + 'No servers match your settings, try changing server or other settings.', ); case TunnelParameterError.noWireguardKey: return sprintf( |
