diff --git a/Cliqz/Privacy/UI/ControlCenter/OverviewViewController.swift b/Cliqz/Privacy/UI/ControlCenter/OverviewViewController.swift index a28315280..8017405ba 100644 --- a/Cliqz/Privacy/UI/ControlCenter/OverviewViewController.swift +++ b/Cliqz/Privacy/UI/ControlCenter/OverviewViewController.swift @@ -836,7 +836,8 @@ class OverviewViewController: UIViewController { self.restrictSiteButton.setTitle(restrictTitle, for: .normal) self.restrictSiteButton.addTarget(self, action: #selector(restrictSitePressed), for: .touchUpInside) - let pauseGhostery = NSLocalizedString("Pause Ghostery", tableName: "Cliqz", comment: "[ControlCenter -> Overview] Pause Ghostery button title") + // Forcing the string instead of using LocalizedString because the L10n system is playing charades + let pauseGhostery = "Pause" self.pauseGhosteryButton.setTitle(pauseGhostery, for: .normal) self.pauseGhosteryButton.addTarget(self, action: #selector(pauseGhosteryPressed), for: .touchUpInside) self.pauseGhosteryButton.titleLabel?.font = UIFont.systemFont(ofSize: 14, weight: UIFont.Weight.medium)