2018-12-18 11:00:16 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2023-02-14 15:10:32 +00:00
|
|
|
// Copyright © 2018-2023 WireGuard LLC. All Rights Reserved.
|
2018-12-18 11:00:16 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|