Rename Networks to Providers

This commit is contained in:
Davide De Rosa 2019-04-06 22:42:35 +02:00
parent 6f7b06b7c7
commit c2fa095933
3 changed files with 15 additions and 15 deletions

View File

@ -36,21 +36,21 @@
"reddit.buttons.remind" = "Remind me later";
"reddit.buttons.never" = "Don't ask again";
"organizer.sections.providers.header" = "Networks";
"organizer.sections.providers.footer" = "Here you find a few public infrastructures offering preset configuration profiles.";
"organizer.sections.providers.header" = "Providers";
"organizer.sections.providers.footer" = "Here you find a few providers with preset configuration profiles.";
"organizer.sections.hosts.header" = "Hosts";
"organizer.sections.hosts.footer" = "Import hosts from raw .ovpn configuration files.";
"organizer.sections.siri.header" = "Siri";
"organizer.sections.siri.footer" = "Get help from Siri to speed up your most common interactions with the app.";
"organizer.cells.profile.value.current" = "In use";
"organizer.cells.add_provider.caption" = "Add new network";
"organizer.cells.add_provider.caption" = "Add new provider";
"organizer.cells.add_host.caption" = "Add new host";
"organizer.cells.siri_shortcuts.caption" = "Manage shortcuts";
"organizer.cells.about.caption" = "About %@";
"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 provider.";
"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 erase the VPN configuration from your device settings? This may fix some broken VPN states and will not affect your network and host profiles.";
"organizer.alerts.delete_vpn_profile.message" = "Do you really want to erase the VPN configuration from your device settings? This may fix some broken VPN states and will not affect your provider and host profiles.";
"wizards.host.cells.title_input.caption" = "Title";
"wizards.host.sections.existing.header" = "Existing profiles";

View File

@ -36,21 +36,21 @@
"reddit.buttons.remind" = "Ricordami più tardi";
"reddit.buttons.never" = "Non chiedere più";
"organizer.sections.providers.header" = "Reti";
"organizer.sections.providers.footer" = "Qui trovi alcune delle infrastrutture pubbliche con configurazioni precompilate.";
"organizer.sections.providers.header" = "Provider";
"organizer.sections.providers.footer" = "Qui trovi alcuni provider con configurazioni precompilate.";
"organizer.sections.hosts.header" = "Host";
"organizer.sections.hosts.footer" = "Importa un host da un file di configurazione .ovpn.";
"organizer.sections.siri.header" = "Siri";
"organizer.sections.siri.footer" = "Chiedi aiuto a Siri per velocizzare le tue interazioni più frequenti con l'app.";
"organizer.cells.profile.value.current" = "In uso";
"organizer.cells.add_provider.caption" = "Aggiungi rete";
"organizer.cells.add_provider.caption" = "Aggiungi provider";
"organizer.cells.add_host.caption" = "Aggiungi host";
"organizer.cells.siri_shortcuts.caption" = "Gestisci comandi rapidi";
"organizer.cells.about.caption" = "Informazioni su %@";
"organizer.cells.uninstall.caption" = "Rimuovi configurazione VPN";
"organizer.alerts.exhausted_providers.message" = "Hai creato profili per tutte le reti disponibili.";
"organizer.alerts.exhausted_providers.message" = "Hai creato profili per tutti i provider disponibili.";
"organizer.alerts.add_host.message" = "Apri l'URL di un file di configurazione .ovpn da Safari, Mail o da un'altra app per configurare un host.\n\nPuoi anche importare un file .ovpn con iTunes File Sharing.";
"organizer.alerts.delete_vpn_profile.message" = "Vuoi veramente cancellare la configurazione VPN dalle impostazioni del tuo dispositivo? Quest'azione potrebbe risolvere alcuni stati erronei della VPN e non altererà le tue reti e i tuoi host.";
"organizer.alerts.delete_vpn_profile.message" = "Vuoi veramente cancellare la configurazione VPN dalle impostazioni del tuo dispositivo? Quest'azione potrebbe risolvere alcuni stati erronei della VPN e non altererà i tuoi provider e i tuoi host.";
"wizards.host.cells.title_input.caption" = "Titolo";
"wizards.host.sections.existing.header" = "Profili esistenti";

View File

@ -385,11 +385,11 @@ public enum L10n {
public static let message = L10n.tr("Localizable", "organizer.alerts.add_host.message")
}
public enum DeleteVpnProfile {
/// Do you really want to erase the VPN configuration from your device settings? This may fix some broken VPN states and will not affect your network and host profiles.
/// Do you really want to erase the VPN configuration from your device settings? This may fix some broken VPN states and will not affect your provider and host profiles.
public static let message = L10n.tr("Localizable", "organizer.alerts.delete_vpn_profile.message")
}
public enum ExhaustedProviders {
/// You have created profiles for any available network.
/// You have created profiles for any available provider.
public static let message = L10n.tr("Localizable", "organizer.alerts.exhausted_providers.message")
}
}
@ -405,7 +405,7 @@ public enum L10n {
public static let caption = L10n.tr("Localizable", "organizer.cells.add_host.caption")
}
public enum AddProvider {
/// Add new network
/// Add new provider
public static let caption = L10n.tr("Localizable", "organizer.cells.add_provider.caption")
}
public enum Profile {
@ -431,9 +431,9 @@ public enum L10n {
public static let header = L10n.tr("Localizable", "organizer.sections.hosts.header")
}
public enum Providers {
/// Here you find a few public infrastructures offering preset configuration profiles.
/// Here you find a few providers with preset configuration profiles.
public static let footer = L10n.tr("Localizable", "organizer.sections.providers.footer")
/// Networks
/// Providers
public static let header = L10n.tr("Localizable", "organizer.sections.providers.header")
}
public enum Siri {