aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/LocalizationHelper.swift
diff options
context:
space:
mode:
Diffstat (limited to 'WireGuard/WireGuard/LocalizationHelper.swift')
-rw-r--r--WireGuard/WireGuard/LocalizationHelper.swift12
1 files changed, 0 insertions, 12 deletions
diff --git a/WireGuard/WireGuard/LocalizationHelper.swift b/WireGuard/WireGuard/LocalizationHelper.swift
deleted file mode 100644
index ed21090..0000000
--- a/WireGuard/WireGuard/LocalizationHelper.swift
+++ /dev/null
@@ -1,12 +0,0 @@
-// SPDX-License-Identifier: MIT
-// Copyright © 2018-2019 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)
-}