mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2024-12-26 03:22:40 +00:00
90acf2b220
A bit overdue, but better late than never. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
13 lines
350 B
Swift
13 lines
350 B
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
|
|
import Foundation
|
|
|
|
func tr(_ key: String) -> String {
|
|
return NSLocalizedString(key, comment: "")
|
|
}
|
|
|
|
func tr(format: String, _ arguments: CVarArg...) -> String {
|
|
return String(format: NSLocalizedString(format, comment: ""), arguments: arguments)
|
|
}
|