Reword VPN configuration deletion

This commit is contained in:
Davide De Rosa 2019-01-05 21:59:02 +01:00
parent 95a39d5376
commit 88099c416b
2 changed files with 4 additions and 4 deletions

View File

@ -43,10 +43,10 @@
"organizer.cells.add_provider.caption" = "Add new network"; "organizer.cells.add_provider.caption" = "Add new network";
"organizer.cells.add_host.caption" = "Add new host"; "organizer.cells.add_host.caption" = "Add new host";
"organizer.cells.about.caption" = "About %@"; "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.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.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."; "account.suggestion_footer.infrastructure.pia" = "Use your website credentials. Your username is usually numeric with a \"p\" prefix.";

View File

@ -307,7 +307,7 @@ internal enum L10n {
internal static let message = L10n.tr("Localizable", "organizer.alerts.add_host.message") internal static let message = L10n.tr("Localizable", "organizer.alerts.add_host.message")
} }
internal enum DeleteVpnProfile { 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 static let message = L10n.tr("Localizable", "organizer.alerts.delete_vpn_profile.message")
} }
internal enum ExhaustedProviders { internal enum ExhaustedProviders {
@ -337,7 +337,7 @@ internal enum L10n {
} }
} }
internal enum Uninstall { internal enum Uninstall {
/// Delete VPN profile /// Remove VPN configuration
internal static let caption = L10n.tr("Localizable", "organizer.cells.uninstall.caption") internal static let caption = L10n.tr("Localizable", "organizer.cells.uninstall.caption")
} }
} }