StringConstants.swift
3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//
// Strings.swift
// browser
//
// Created by Artem Talko on 19.10.2023.
//
import Foundation
struct StringConstants {
///PayloadView
static let ourBrowser = "Our browser lets you quickly and safely access \nthe internet. You can use it to look at web \npages, find information, and chat with friends."
static let privacyLabelText = "By starting, you agree to our Terms and Condition and Privacy Policy."
static let payloadViewControllerData = ["Unlimited searching prompts", "Advert blocker activation", "Free to use"]
///BrowserHomeView
static let frequentlyVisited = "Frequently visited"
///BrowserHomeViewController
static let browserHomeVCImages = ["Linkedin", "Opera", "Gmail", "GitHub"]
static let browserHomeVCurl = [
"https://www.linkedin.com/",
"https://www.opera.com/",
"https://mail.google.com/",
"https://github.com/" ]
///SettingView
static let settingViewControllerTableViewData = ["Privacy policy", "Terms and condition", "Share app", "Rate app", "Support"]
static let removeAdvertTableViewData = ["Unlimited blocks & uploads", "Enhanced User Experience", "Faster Page Load Times", "Privacy and Security"]
static let search = "Search"
///RemoveAdvertView
static let yourDiscount = "You save 91% - normally US $9,99"
static let freeTrial = "3-day free trial"
static let claimOffer = "Claim your one time sing up offer"
static let price = "0.99$"
static let subscribe = "Subscribe now"
static let advertMode = "Advertblocker Mode"
static let turnOff = "Tap to turn off"
static let turnOn = "Tap to turn on"
///Cell reuse identifiers
static let historyTableViewCell = "HistoryTableViewCell"
static let searchTableViewCell = "SearchingTableViewCell"
static let removeAdvertTableViewCell = "RemoveAdvertTableViewCell"
static let settingTableViewCell = "SettingTableViewCell"
static let advantagesTableViewCell = "AdvantagesTableViewCell"
///setting cell detail info
static let settingTerms = "Thank you for choosing VPN Proxy Master.\n\n We will collect only the minimum data required to offer you a safe and stable VPN experience. For your convenience, hereby enclosed are the bullet points of data collected by us:\n\n · Device’s System Language which we do not retain. This is for settings the in-app language.\n\n · IP address and System Country which we do not retain. Your IP information is only used to provide you with the fastest default server list.\n\n We will strictly follow our no-logs policy and relevant data privacy laws, and will try our best to protect your privacy and security.\n\n For more information, please read our Terms and Service and Privacy Policy."
static let settingHeader = "Terms\nand conditions"
static let settingAgreeButtonText = "Agree & Continue"
static let privacyHeaderText = "Your Privacy\n is our top priority"
static let menuTitle = "Clearing will remove history, cookies and other browsing data. History will be cleared from devices signed into your iCloud Account. Clear from:"
}