diff --git a/Passepartout/Resources/en.lproj/Localizable.strings b/Passepartout/Resources/en.lproj/Localizable.strings index c676bbc5..3d5d0f8a 100644 --- a/Passepartout/Resources/en.lproj/Localizable.strings +++ b/Passepartout/Resources/en.lproj/Localizable.strings @@ -43,10 +43,10 @@ "organizer.cells.add_provider.caption" = "Add new network"; "organizer.cells.add_host.caption" = "Add new host"; "organizer.cells.about.caption" = "About %@"; -"organizer.cells.uninstall.caption" = "Delete VPN profile"; +"organizer.cells.uninstall.caption" = "Remove VPN configuration"; "organizer.alerts.exhausted_providers.message" = "You have created profiles for any available network."; "organizer.alerts.add_host.message" = "Open an URL to an .ovpn configuration file from Safari, Mail or another app to set up a host profile.\n\nYou can also import an .ovpn with iTunes File Sharing."; -"organizer.alerts.delete_vpn_profile.message" = "Do you really want to delete the VPN profile from the device?"; +"organizer.alerts.delete_vpn_profile.message" = "Do you really want to erase the VPN configuration from your device settings? This will not affect your network and host profiles."; "account.suggestion_footer.infrastructure.pia" = "Use your website credentials. Your username is usually numeric with a \"p\" prefix."; diff --git a/Passepartout/Sources/SwiftGen+Strings.swift b/Passepartout/Sources/SwiftGen+Strings.swift index cf2b1ef9..8e3584ee 100644 --- a/Passepartout/Sources/SwiftGen+Strings.swift +++ b/Passepartout/Sources/SwiftGen+Strings.swift @@ -307,7 +307,7 @@ internal enum L10n { internal static let message = L10n.tr("Localizable", "organizer.alerts.add_host.message") } internal enum DeleteVpnProfile { - /// Do you really want to delete the VPN profile from the device? + /// Do you really want to erase the VPN configuration from your device settings? This will not affect your network and host profiles. internal static let message = L10n.tr("Localizable", "organizer.alerts.delete_vpn_profile.message") } internal enum ExhaustedProviders { @@ -337,7 +337,7 @@ internal enum L10n { } } internal enum Uninstall { - /// Delete VPN profile + /// Remove VPN configuration internal static let caption = L10n.tr("Localizable", "organizer.cells.uninstall.caption") } }