Reword policy text

This commit is contained in:
Davide De Rosa 2018-11-04 12:05:45 +01:00
parent 375695c72b
commit 9bda7f9576
2 changed files with 4 additions and 4 deletions

View File

@ -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_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.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.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.diagnostics.header" = "Diagnostics";
//"service.sections.destruction.footer" = "Delete configuration from device settings."; //"service.sections.destruction.footer" = "Delete configuration from device settings.";
@ -100,7 +100,7 @@
"service.cells.trusted_mobile.caption" = "Cellular network"; "service.cells.trusted_mobile.caption" = "Cellular network";
"service.cells.trusted_wifi.caption" = "%@"; "service.cells.trusted_wifi.caption" = "%@";
"service.cells.trusted_add_wifi.caption" = "Add current Wi-Fi"; "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.test_connectivity.caption" = "Test connectivity";
"service.cells.data_count.caption" = "Exchanged bytes count"; "service.cells.data_count.caption" = "Exchanged bytes count";
"service.cells.debug_log.caption" = "Debug log"; "service.cells.debug_log.caption" = "Debug log";

View File

@ -532,7 +532,7 @@ internal enum L10n {
internal static let caption = L10n.tr("Localizable", "service.cells.trusted_mobile.caption") internal static let caption = L10n.tr("Localizable", "service.cells.trusted_mobile.caption")
} }
internal enum TrustedPolicy { internal enum TrustedPolicy {
/// Disconnect VPN when trusted /// Trust disables VPN
internal static let caption = L10n.tr("Localizable", "service.cells.trusted_policy.caption") internal static let caption = L10n.tr("Localizable", "service.cells.trusted_policy.caption")
} }
internal enum TrustedWifi { internal enum TrustedWifi {
@ -582,7 +582,7 @@ internal enum L10n {
internal static let header = L10n.tr("Localizable", "service.sections.status.header") internal static let header = L10n.tr("Localizable", "service.sections.status.header")
} }
internal enum Trusted { 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") internal static let footer = L10n.tr("Localizable", "service.sections.trusted.footer")
/// Trusted networks /// Trusted networks
internal static let header = L10n.tr("Localizable", "service.sections.trusted.header") internal static let header = L10n.tr("Localizable", "service.sections.trusted.header")