passepartout-apple/Passepartout/AppShared/L10n/Unlocalized.swift

259 lines
7.2 KiB
Swift
Raw Normal View History

2022-04-12 13:09:14 +00:00
//
// Unlocalized.swift
// Passepartout
//
// Created by Davide De Rosa on 2/26/22.
2023-03-17 15:56:19 +00:00
// Copyright (c) 2023 Davide De Rosa. All rights reserved.
2022-04-12 13:09:14 +00:00
//
// https://github.com/passepartoutvpn
//
// This file is part of Passepartout.
//
// Passepartout is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Passepartout is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import Foundation
2022-06-23 21:31:01 +00:00
import PassepartoutLibrary
2022-04-12 13:09:14 +00:00
enum Unlocalized {
static let appName = Constants.Global.appName
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
enum Placeholders {
static let empty = ""
static let address = "0.0.0.0"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let port = "8080"
static let hostname = "example.com"
static let dohURL = "https://example.com/dns-query"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let dotServerName = hostname
static let dnsAddress = address
static let dnsDomain = hostname
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let pacURL = "https://proxy/auto-conf"
static let proxyBypassDomain = hostname
}
enum DNS {
static let plain = "Cleartext"
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
enum Keychain {
static func passwordLabel(_ profileName: String, vpnProtocol: VPNProtocolType) -> String {
2022-09-04 18:09:31 +00:00
"\(Constants.Global.appName): \(profileName) (\(vpnProtocol.description))"
2022-04-12 13:09:14 +00:00
}
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
enum Issues {
static let recipient = "issues@\(Constants.Domain.name)"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let subject = "\(appName) - Report issue"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static func body(_ description: String, _ metadata: String) -> String {
2022-09-04 18:09:31 +00:00
"Hi,\n\n\(description)\n\n\(metadata)\n\nRegards"
2022-04-12 13:09:14 +00:00
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let template = "description of the issue: "
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let maxLogBytes = UInt64(20000)
enum Filenames {
static var debugLog: String {
let fmt = DateFormatter()
fmt.dateFormat = "yyyyMMdd-HHmmss"
let iso = fmt.string(from: Date())
return "debug-\(iso).txt"
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let configuration = "profile.ovpn"
// static let configuration = "profile.ovpn.txt"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let template = "description of the issue: "
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
enum MIME {
static let debugLog = "text/plain"
// static let configuration = "application/x-openvpn-profile"
static let configuration = "text/plain"
}
}
enum Social {
static let reddit = "Reddit"
2023-03-17 20:55:47 +00:00
private static let twitterHashtags = ["OpenVPN", "WireGuard", "iOS", "macOS"]
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static func twitterIntent(withMessage message: String) -> URL {
var text = message
for ht in twitterHashtags {
text = text.replacingOccurrences(of: ht, with: "#\(ht)")
}
var comps = URLComponents(string: "https://twitter.com/intent/tweet")!
comps.queryItems = [
URLQueryItem(name: "url", value: Constants.URLs.website.absoluteString),
URLQueryItem(name: "via", value: "keeshux"),
URLQueryItem(name: "text", value: text)
]
return comps.url!
}
}
enum Translations {
enum Email {
static let recipient = "translate@\(Constants.Domain.name)"
static let subject = "\(appName) - Translations"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static func body(_ description: String) -> String {
2022-09-04 18:09:31 +00:00
"Hi,\n\n\(description)\n\nRegards"
2022-04-12 13:09:14 +00:00
}
static let template = "I offer to translate to: "
}
static let translators: [String: String] = [
"de": "Christian Lederer, Theodor Tietze",
"el": "Konstantinos Koukoulakis",
"en-US": "Davide De Rosa",
"es": "Davide De Rosa, Elena Vivó",
"fr-FR": "Julien Laniel",
"it": "Davide De Rosa",
"nl": "Norbert de Vreede",
"pl": "Piotr Książek",
"pt-BR": "Helder Santana",
"ru": "Alexander Korobynikov",
"sv": "Henry Gross-Hellsen",
"ua": "Dmitry Chirkin",
2022-04-12 13:09:14 +00:00
"zh-Hans": "OnlyThen"
]
}
enum Credits {
typealias License = (String, String, URL)
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
typealias Notice = (String, String)
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let author = "Davide De Rosa"
static let licenses: [License] = [(
"Kvitto",
"BSD",
URL(string: "https://raw.githubusercontent.com/Cocoanetics/Kvitto/develop/LICENSE")!
), (
"lzo",
"GPLv2",
URL(string: "https://www.gnu.org/licenses/gpl-2.0.txt")!
), (
"OpenSSL",
"OpenSSL",
URL(string: "https://raw.githubusercontent.com/openssl/openssl/master/LICENSE.txt")!
), (
"PIATunnel",
"MIT",
URL(string: "https://raw.githubusercontent.com/pia-foss/tunnel-apple/master/LICENSE")!
), (
"SwiftGen",
"MIT",
URL(string: "https://raw.githubusercontent.com/SwiftGen/SwiftGen/master/LICENCE")!
), (
"SwiftyBeaver",
"MIT",
URL(string: "https://raw.githubusercontent.com/SwiftyBeaver/SwiftyBeaver/master/LICENSE")!
)]
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let notices: [Notice] = [(
"Circle Icons",
"The logo is taken from the awesome Circle Icons set by Nick Roach."
), (
"Country flags",
"The country flags are taken from: https://github.com/lipis/flag-icon-css/"
), (
"OpenVPN",
2022-06-16 11:40:48 +00:00
"© Copyright 2022 OpenVPN | OpenVPN is a registered trademark of OpenVPN, Inc."
), (
"WireGuard",
"© Copyright 2015-2022 Jason A. Donenfeld. All Rights Reserved. \"WireGuard\" and the \"WireGuard\" logo are registered trademarks of Jason A. Donenfeld."
2022-04-12 13:09:14 +00:00
)]
}
enum About {
static let github = "GitHub"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let readme = "README"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let changelog = "CHANGELOG"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let faq = "FAQ"
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
enum VPN {
static let vpn = "VPN"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let certificateAuthority = "CA"
static let xor = "XOR"
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
enum OpenVPN {
static let compLZO = "--comp-lzo"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let compress = "--compress"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let lzo = "LZO"
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
enum XOR: String {
case xormask
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
case xorptrpos
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
case reverse
2023-03-17 20:55:47 +00:00
2022-11-06 17:08:41 +00:00
case obfuscate
}
2022-04-12 13:09:14 +00:00
}
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
enum Network {
static let dns = "DNS"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let tls = "TLS"
static let https = "HTTPS"
static let url = "URL"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let mtu = "MTU"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let ipv4 = "IPv4"
static let ipv6 = "IPv6"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let ssid = "SSID"
2023-03-17 20:55:47 +00:00
2022-04-12 13:09:14 +00:00
static let proxyAutoConfiguration = "PAC"
}
enum Other {
static let siri = "Siri"
2023-03-17 20:55:47 +00:00
static let totp = "TOTP"
2022-04-12 13:09:14 +00:00
}
}