diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-02-21 12:57:57 +0100 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-02-28 10:48:55 +0100 |
| commit | b494e43665ed84db93be1c8336acd205381456e8 (patch) | |
| tree | 99b6a651c0aeab550594472a99c46a12ee4b5012 | |
| parent | 64f883ab70e36bdaf929ab6a8e0322024b9b9b38 (diff) | |
| download | mullvadvpn-b494e43665ed84db93be1c8336acd205381456e8.tar.xz mullvadvpn-b494e43665ed84db93be1c8336acd205381456e8.zip | |
Fix typo in Wireguard obfuscation translation string
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/renderer/components/WireguardSettings.tsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/components/WireguardSettings.tsx b/desktop/packages/mullvad-vpn/src/renderer/components/WireguardSettings.tsx index 2d54fa1f47..62381087c1 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/components/WireguardSettings.tsx +++ b/desktop/packages/mullvad-vpn/src/renderer/components/WireguardSettings.tsx @@ -245,10 +245,14 @@ function ObfuscationSettings() { title={messages.pgettext('wireguard-settings-view', 'Obfuscation')} details={ <ModalMessage> - {messages.pgettext( - 'wireguard-settings-view', - 'Obfuscation hides the WireGuard traffic inside another protocol. It can be used to help circumvent censorship and other types of filtering, where a plain WireGuard connect would be blocked.', - )} + { + // TRANSLATORS: Describes what WireGuard obfuscation does, how it works and when + // TRANSLATORS: it would be useful to enable it. + messages.pgettext( + 'wireguard-settings-view', + 'Obfuscation hides the WireGuard traffic inside another protocol. It can be used to help circumvent censorship and other types of filtering, where a plain WireGuard connection would be blocked.', + ) + } </ModalMessage> } items={obfuscationTypeItems} |
