Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

[IB-1886]: [Rebranding] Replace Ghostery strings with Cliqz strings

  • Loading branch information
naira-cliqz committed Jun 28, 2019
1 parent fd87446 commit 75ab2e3b50474fcb5176aba6e0d2c66401cd21ae
@@ -139,8 +139,11 @@ class CliqzAppSettingsTableViewController: AppSettingsTableViewController {
// [IP-315] Disable theme switching: remove from settings
//ThemeSetting(settings: self),
]

let statusText = NSLocalizedString("When Opening Ghostery", tableName: "Cliqz", comment: "Description displayed under the ”Offer to Open Copied Link” option.")
#if CLIQZ
let statusText = NSLocalizedString("When Opening Cliqz", tableName: "Cliqz", comment: "Description displayed under the ”Offer to Open Copied Link” option.")
#else
let statusText = NSLocalizedString("When Opening Ghostery", tableName: "Cliqz", comment: "Description displayed under the ”Offer to Open Copied Link” option.")
#endif
browsingAndHistorySettings += [
BoolSetting(prefs: prefs, prefKey: "showClipboardBar", defaultValue: false,
titleText: Strings.SettingsOfferClipboardBarTitle,
@@ -25,11 +25,13 @@ class SendUsageDataTableViewController: ToggleSubSettingsTableViewController {
override func getSectionFooters() -> [String] {
#if PAID
return [NSLocalizedString("Help us improve your browsing experience. Lumen collects strictly anonymous usage data. At no occasion is any personal data collected.", tableName: "Lumen", comment: "Restore Tabs Prompt Description")]
#elseif CLIQZ
return [NSLocalizedString("Help us improve your browsing experience. Cliqz collects strictly anonymous usage data. At no occasion is any personal data collected.", tableName: "Cliqz", comment: "Restore Tabs Prompt Description")]
#else
return [NSLocalizedString("Help us improve your browsing experience. Ghostery collects strictly anonymous usage data. At no occasion is any personal data collected.", tableName: "Ghostery", comment: "Restore Tabs Prompt Description")]
#endif
}

override func saveToggles(isOn: Bool, atIndex: Int) {
SettingsPrefs.shared.updateSendUsageDataPref(isOn)
}

0 comments on commit 75ab2e3

Please sign in to comment.