diff options
| -rw-r--r-- | ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsViewController.swift | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsViewController.swift b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsViewController.swift index 73c89c5dfb..201043c941 100644 --- a/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsViewController.swift +++ b/ios/MullvadVPN/View controllers/VPNSettings/VPNSettingsViewController.swift @@ -180,12 +180,11 @@ extension VPNSettingsViewController: VPNSettingsDataSourceDelegate { tableName: "DAITA", value: """ DAITA (Defence against AI-guided Traffic Analysis) hides patterns in your encrypted VPN traffic. \ - If anyone is monitoring your connection, this makes it significantly harder for them to identify\ - what websites you are visiting. - It does this by carefully adding network noise and making all network packets the same size. - Attention: Since this increases your total network traffic,\ - be cautious if you have a limited data plan.\ - It can also negatively impact your network speed. + If anyone is monitoring your connection, this makes it significantly harder for them to identify \ + what websites you are visiting. It does this by carefully adding network noise and making all \ + network packets the same size. + Attention: Since this increases your total network traffic, be cautious if you have a limited data plan. \ + It can also negatively impact your network speed and battery usage. """, comment: "" )) @@ -219,13 +218,17 @@ extension VPNSettingsViewController: VPNSettingsDataSourceDelegate { let messageString = switch item { case .daitaSettingIncompatibleWithSinglehop: """ - DAITA isn’t available on the current server. After enabling, please go to \ - the Switch location view and select a location that supports DAITA. + DAITA isn’t available on the current server. After enabling, please go to the Switch \ + location view and select a location that supports DAITA. + Attention: Since this increases your total network traffic, be cautious if you have a \ + limited data plan. It can also negatively impact your network speed and battery usage. """ case .daitaSettingIncompatibleWithMultihop: """ - DAITA isn’t available on the current entry server. After enabling, please go to \ - the Switch location view and select an entry location that supports DAITA. + DAITA isn’t available on the current entry server. After enabling, please go to the Switch \ + location view and select an entry location that supports DAITA. + Attention: Since this increases your total network traffic, be cautious if you have a \ + limited data plan. It can also negatively impact your network speed and battery usage. """ } @@ -234,7 +237,7 @@ extension VPNSettingsViewController: VPNSettingsDataSourceDelegate { accessibilityIdentifier: .daitaPromptAlert, icon: .info, message: NSLocalizedString( - "DAITA_INFORMATION_TEXT", + "VPN_SETTINGS_VPN_DAITA_ENABLE_TEXT", tableName: "DAITA", value: messageString, comment: "" |
