diff --git a/Passepartout/Resources/en.lproj/Localizable.strings b/Passepartout/Resources/en.lproj/Localizable.strings index f400f355..b5a06e69 100644 --- a/Passepartout/Resources/en.lproj/Localizable.strings +++ b/Passepartout/Resources/en.lproj/Localizable.strings @@ -75,7 +75,7 @@ "service.sections.vpn_resolves_hostname.footer" = "Preferred in most networks and required in some IPv6 networks. Disable where DNS is blocked, or to speed up negotiation when DNS is slow to respond."; //"service.sections.vpn_prefers_udp.footer" = "UDP is faster than TCP, but may not work in some networks. Disable in networks where UDP might be blocked."; "service.sections.trusted.header" = "Trusted networks"; -"service.sections.trusted.footer" = "When entering a trusted network, the VPN connection is normally shut down and kept disconnected. Disable this option to allow manual VPN connections."; +"service.sections.trusted.footer" = "When entering a trusted network, the VPN is normally shut down and kept disconnected. Disable this option to not enforce such behavior."; "service.sections.diagnostics.header" = "Diagnostics"; //"service.sections.destruction.footer" = "Delete configuration from device settings."; @@ -100,7 +100,7 @@ "service.cells.trusted_mobile.caption" = "Cellular network"; "service.cells.trusted_wifi.caption" = "%@"; "service.cells.trusted_add_wifi.caption" = "Add current Wi-Fi"; -"service.cells.trusted_policy.caption" = "Disconnect VPN when trusted"; +"service.cells.trusted_policy.caption" = "Trust disables VPN"; "service.cells.test_connectivity.caption" = "Test connectivity"; "service.cells.data_count.caption" = "Exchanged bytes count"; "service.cells.debug_log.caption" = "Debug log"; diff --git a/Passepartout/Sources/SwiftGen+Strings.swift b/Passepartout/Sources/SwiftGen+Strings.swift index 93401fc7..1af81254 100644 --- a/Passepartout/Sources/SwiftGen+Strings.swift +++ b/Passepartout/Sources/SwiftGen+Strings.swift @@ -532,7 +532,7 @@ internal enum L10n { internal static let caption = L10n.tr("Localizable", "service.cells.trusted_mobile.caption") } internal enum TrustedPolicy { - /// Disconnect VPN when trusted + /// Trust disables VPN internal static let caption = L10n.tr("Localizable", "service.cells.trusted_policy.caption") } internal enum TrustedWifi { @@ -582,7 +582,7 @@ internal enum L10n { internal static let header = L10n.tr("Localizable", "service.sections.status.header") } internal enum Trusted { - /// When entering a trusted network, the VPN connection is normally shut down and kept disconnected. Disable this option to allow manual VPN connections. + /// When entering a trusted network, the VPN connection is normally shut down and disabled. Disable this option to not enforce this behavior. internal static let footer = L10n.tr("Localizable", "service.sections.trusted.footer") /// Trusted networks internal static let header = L10n.tr("Localizable", "service.sections.trusted.header")