Rename Any to Automatic, makes more sense

This commit is contained in:
Davide De Rosa 2019-04-07 15:17:31 +02:00
parent f53ad65bcd
commit bb4803fe1c
3 changed files with 6 additions and 6 deletions

View File

@ -148,8 +148,8 @@
"endpoint.sections.location_addresses.header" = "Addresses";
"endpoint.sections.location_protocols.header" = "Protocols";
"endpoint.cells.any_address.caption" = "Any";
"endpoint.cells.any_protocol.caption" = "Any";
"endpoint.cells.any_address.caption" = "Automatic";
"endpoint.cells.any_protocol.caption" = "Automatic";
"provider.preset.cells.tech_details.caption" = "Technical details";
//"provider.preset.sections.main.footer" = "Tap info button to disclose technical details.";

View File

@ -144,8 +144,8 @@
"endpoint.sections.location_addresses.header" = "Indirizzi";
"endpoint.sections.location_protocols.header" = "Protocolli";
"endpoint.cells.any_address.caption" = "Qualunque";
"endpoint.cells.any_protocol.caption" = "Qualunque";
"endpoint.cells.any_address.caption" = "Automatico";
"endpoint.cells.any_protocol.caption" = "Automatico";
"provider.preset.cells.tech_details.caption" = "Dettagli tecnici";
//"provider.preset.sections.main.footer" = "Tap info button to disclose technical details.";

View File

@ -298,11 +298,11 @@ public enum L10n {
public enum Endpoint {
public enum Cells {
public enum AnyAddress {
/// Any
/// Automatic
public static let caption = L10n.tr("Localizable", "endpoint.cells.any_address.caption")
}
public enum AnyProtocol {
/// Any
/// Automatic
public static let caption = L10n.tr("Localizable", "endpoint.cells.any_protocol.caption")
}
}