diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2024-01-31 17:49:10 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2024-01-31 17:49:10 +0100 |
| commit | 0e9adc3686c0efabcbad631da9a59931b4141437 (patch) | |
| tree | a78de59f2e5643bdda193054b69787e7e249a705 /gui/src/shared | |
| parent | b6e056958058970b5799671398ed3c45ce0b38b2 (diff) | |
| parent | b478ad0ccc6bf3a8db8a3b13fb9ddeaaa667622e (diff) | |
| download | mullvadvpn-0e9adc3686c0efabcbad631da9a59931b4141437.tar.xz mullvadvpn-0e9adc3686c0efabcbad631da9a59931b4141437.zip | |
Merge branch 'fix-incorrect-strings'
Diffstat (limited to 'gui/src/shared')
| -rw-r--r-- | gui/src/shared/notifications/error.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/src/shared/notifications/error.ts b/gui/src/shared/notifications/error.ts index bead5ae729..673d6cea28 100644 --- a/gui/src/shared/notifications/error.ts +++ b/gui/src/shared/notifications/error.ts @@ -167,7 +167,7 @@ function getMessage(errorState: ErrorState): string { if (errorState.osError === 4319) { return messages.pgettext( 'notifications', - 'Unable to start tunnel connection. This could be caused by incompatibility with VMware, please troubleshoot.', + 'Unable to start tunnel connection. This could be because of conflicts with VMware, please troubleshoot.', ); } @@ -287,11 +287,11 @@ function getActions(errorState: ErrorState): InAppNotificationAction | void { troubleshoot: { details: messages.pgettext( 'troubleshoot', - 'Unable to start tunnel connection because of a failure when creating the tunnel device. This is often caused by an issue with the VMware Bridge Protocol.', + 'Unable to start tunnel connection because of a failure when creating the tunnel device. This is often caused by conflicts with the VMware Bridge Protocol.', ), steps: [ - messages.pgettext('troubleshoot', 'Try to reinstall VMware'), - messages.pgettext('troubleshoot', 'Try to uninstall VMware'), + messages.pgettext('troubleshoot', 'Try to reinstall VMware.'), + messages.pgettext('troubleshoot', 'Try to uninstall VMware.'), ], }, }; |
