diff options
author | 2019-02-12 19:25:42 +0530 | |
---|---|---|
committer | 2019-02-12 19:30:59 +0530 | |
commit | 4547e01283960987f4c058cdb363d5afba83a5d0 (patch) | |
tree | 9a35703d864dec811950dc87a489fa9a3b9628c5 /WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift | |
parent | Log migration of tunnel configuration (diff) | |
download | wireguard-apple-4547e01283960987f4c058cdb363d5afba83a5d0.tar.xz wireguard-apple-4547e01283960987f4c058cdb363d5afba83a5d0.zip |
Preshared key field in the detail view should just say 'enabled'
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to '')
-rw-r--r-- | WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift | 2 |
1 files changed, 2 insertions, 0 deletions
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] } |