From bbfc2aed63b7ab73c930079cfed7381ac077d792 Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Wed, 3 Jun 2020 09:05:29 +1000 Subject: [PATCH] =?UTF-8?q?Replace=20guard=20node=20=E2=86=92=20entry=20no?= =?UTF-8?q?de?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Signal/src/Loki/View Controllers/PathVC.swift | 2 +- Signal/translations/en.lproj/Localizable.strings | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/Loki/View Controllers/PathVC.swift b/Signal/src/Loki/View Controllers/PathVC.swift index f4c984f1b..f34f9d344 100644 --- a/Signal/src/Loki/View Controllers/PathVC.swift +++ b/Signal/src/Loki/View Controllers/PathVC.swift @@ -158,7 +158,7 @@ final class PathVC : BaseVC { private func getPathRow(snode: LokiAPITarget, location: LineView.Location, dotAnimationStartDelay: Double, dotAnimationRepeatInterval: Double, isGuardSnode: Bool) -> UIStackView { let country = IP2Country.shared.countryNamesCache[snode.ip] ?? "Resolving..." - let title = isGuardSnode ? NSLocalizedString("Guard Node", comment: "") : NSLocalizedString("Service Node", comment: "") + let title = isGuardSnode ? NSLocalizedString("Entry Node", comment: "") : NSLocalizedString("Service Node", comment: "") return getPathRow(title: title, subtitle: country, location: location, dotAnimationStartDelay: dotAnimationStartDelay, dotAnimationRepeatInterval: dotAnimationRepeatInterval) } diff --git a/Signal/translations/en.lproj/Localizable.strings b/Signal/translations/en.lproj/Localizable.strings index a58dfe1cf..73db04a82 100644 --- a/Signal/translations/en.lproj/Localizable.strings +++ b/Signal/translations/en.lproj/Localizable.strings @@ -2835,7 +2835,7 @@ "Please wait while the device link is created. This can take up to a minute." = "Please wait while the device link is created. This can take up to a minute."; "Path" = "Path"; "Session hides your IP by bouncing your messages through several Service Nodes in Session’s decentralized network. These are the countries your connection is currently being bounced through:" = "Session hides your IP by bouncing your messages through several Service Nodes in Session’s decentralized network. These are the countries your connection is currently being bounced through:"; -"Guard Node" = "Guard Node"; +"Entry Node" = "Entry Node"; "Service Node" = "Service Node"; "You" = "You"; "Destination" = "Destination";