From 4547e01283960987f4c058cdb363d5afba83a5d0 Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Tue, 12 Feb 2019 19:25:42 +0530 Subject: Preshared key field in the detail view should just say 'enabled' Signed-off-by: Roopesh Chander --- WireGuard/WireGuard/Base.lproj/Localizable.strings | 2 ++ .../UI/iOS/ViewController/TunnelDetailTableViewController.swift | 2 ++ .../UI/macOS/ViewController/TunnelDetailTableViewController.swift | 2 ++ 3 files changed, 6 insertions(+) diff --git a/WireGuard/WireGuard/Base.lproj/Localizable.strings b/WireGuard/WireGuard/Base.lproj/Localizable.strings index 73cf50d..b42d330 100644 --- a/WireGuard/WireGuard/Base.lproj/Localizable.strings +++ b/WireGuard/WireGuard/Base.lproj/Localizable.strings @@ -111,6 +111,8 @@ "tunnelHandshakeTimestampHours hh:mm:ss (%@)" = "%@ hours"; "tunnelHandshakeTimestampMinutes mm:ss (%@)" = "%@ minutes"; +"tunnelPeerPresharedKeyEnabled" = "enabled"; + // Error alerts while creating / editing a tunnel configuration /* Alert title for error in the interface data */ diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift index d45f846..1f1a24f 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelDetailTableViewController.swift @@ -370,6 +370,8 @@ extension TunnelDetailTableViewController { cell.key = field.localizedUIString if field == .persistentKeepAlive { cell.value = tr(format: "tunnelPeerPersistentKeepaliveValue (%@)", peerData[field]) + } else if field == .preSharedKey { + cell.value = tr("tunnelPeerPresharedKeyEnabled") } else { cell.value = peerData[field] } diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift index e67dc8d..411fe57 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift @@ -405,6 +405,8 @@ extension TunnelDetailTableViewController: NSTableViewDelegate { cell.key = tr(format: "macFieldKey (%@)", localizedKeyString) if field == .persistentKeepAlive { cell.value = tr(format: "tunnelPeerPersistentKeepaliveValue (%@)", peerData[field]) + } else if field == .preSharedKey { + cell.value = tr("tunnelPeerPresharedKeyEnabled") } else { cell.value = peerData[field] } -- cgit v1.2.3-59-g8ed1b