From 6ad3a78853a103395026b17c5510336497bc365c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20=C5=9Apiewak?= Date: Mon, 15 Jan 2024 16:29:24 +0100 Subject: [PATCH 1/9] Hide bottom URL bar when find in page is active (#2339) --- DuckDuckGo/MainView.swift | 23 +++++++++++++++++++++++ DuckDuckGo/MainViewController.swift | 5 ++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/DuckDuckGo/MainView.swift b/DuckDuckGo/MainView.swift index e78b925d59..b971a08a09 100644 --- a/DuckDuckGo/MainView.swift +++ b/DuckDuckGo/MainView.swift @@ -392,6 +392,29 @@ class MainViewCoordinator { addressBarPosition = position } + func hideNavigationBarWithBottomPosition() { + guard addressBarPosition.isBottom else { + return + } + + // Hiding the container won't suffice as it still defines the contentContainer.bottomY through constraints + navigationBarContainer.isHidden = true + + constraints.contentContainerBottomToNavigationBarContainerTop.isActive = false + constraints.contentContainerBottomToToolbarTop.isActive = true + } + + func showNavigationBarWithBottomPosition() { + guard addressBarPosition.isBottom else { + return + } + + constraints.contentContainerBottomToToolbarTop.isActive = false + constraints.contentContainerBottomToNavigationBarContainerTop.isActive = true + + navigationBarContainer.isHidden = false + } + func setAddressBarTopActive(_ active: Bool) { constraints.contentContainerBottomToToolbarTop.isActive = active constraints.navigationBarContainerTop.isActive = active diff --git a/DuckDuckGo/MainViewController.swift b/DuckDuckGo/MainViewController.swift index f591b60c62..90ac5af360 100644 --- a/DuckDuckGo/MainViewController.swift +++ b/DuckDuckGo/MainViewController.swift @@ -1273,8 +1273,9 @@ extension MainViewController: FindInPageViewDelegate { func done(findInPageView: FindInPageView) { currentTab?.findInPage = nil viewCoordinator.toolbar.accessibilityElementsHidden = false + + viewCoordinator.showNavigationBarWithBottomPosition() } - } extension MainViewController: BrowserChromeDelegate { @@ -1801,6 +1802,8 @@ extension MainViewController: TabDelegate { func tabDidRequestFindInPage(tab: TabViewController) { updateFindInPage() _ = findInPageView?.becomeFirstResponder() + + viewCoordinator.hideNavigationBarWithBottomPosition() } func closeFindInPage(tab: TabViewController) { From 8b94de5d151044d8908e45f095b001bf9b49a921 Mon Sep 17 00:00:00 2001 From: Christopher Brind Date: Mon, 15 Jan 2024 16:40:18 +0000 Subject: [PATCH 2/9] fix page position on navigation (#2330) --- .../xcschemes/DuckDuckGo.xcscheme | 2 +- DuckDuckGo/BarsAnimator.swift | 15 ++--- DuckDuckGo/BrowserChromeManager.swift | 1 - .../BrowsingMenu/BrowsingMenuAnimator.swift | 2 +- .../BrowsingMenuViewController.swift | 20 +++--- DuckDuckGo/MainView.swift | 33 +++++++-- DuckDuckGo/MainViewController.swift | 67 +++++++++++++++---- DuckDuckGo/TabViewController.swift | 7 +- DuckDuckGo/WebViewTransition.swift | 8 ++- 9 files changed, 109 insertions(+), 46 deletions(-) diff --git a/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGo.xcscheme b/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGo.xcscheme index 7c553f4089..e564636928 100644 --- a/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGo.xcscheme +++ b/DuckDuckGo.xcodeproj/xcshareddata/xcschemes/DuckDuckGo.xcscheme @@ -1,7 +1,7 @@ + version = "1.7"> diff --git a/DuckDuckGo/BarsAnimator.swift b/DuckDuckGo/BarsAnimator.swift index d2f4a8d758..01cae59724 100644 --- a/DuckDuckGo/BarsAnimator.swift +++ b/DuckDuckGo/BarsAnimator.swift @@ -84,10 +84,6 @@ class BarsAnimator { let ratio = calculateTransitionRatio(for: scrollView.contentOffset.y) delegate?.setBarsVisibility(1.0 - ratio, animated: false) transitionProgress = ratio - - var offset = scrollView.contentOffset - offset.y = transitionStartPosY - scrollView.contentOffset = offset } private func transitioningAndScrolling(in scrollView: UIScrollView) { @@ -103,10 +99,6 @@ class BarsAnimator { delegate?.setBarsVisibility(1.0 - ratio, animated: false) transitionProgress = ratio - - var offset = scrollView.contentOffset - offset.y = transitionStartPosY - scrollView.contentOffset = offset } private func hiddenAndScrolling(in scrollView: UIScrollView) { @@ -139,7 +131,12 @@ class BarsAnimator { let cumulativeDistance = (barsHeight * transitionProgress) + distance let normalizedDistance = max(cumulativeDistance, 0) - return min(normalizedDistance / barsHeight, 1.0) + // We used to fix the scroll position in place as the transition happened + // but now the bars disappear too. This adjusts for that. + let transitionSpeed = 0.5 + + let ratio = min(normalizedDistance / barsHeight * transitionSpeed, 1.0) + return ratio } func didFinishScrolling(in scrollView: UIScrollView, velocity: CGFloat) { diff --git a/DuckDuckGo/BrowserChromeManager.swift b/DuckDuckGo/BrowserChromeManager.swift index 3f458dd74f..c59afa3bd0 100644 --- a/DuckDuckGo/BrowserChromeManager.swift +++ b/DuckDuckGo/BrowserChromeManager.swift @@ -38,7 +38,6 @@ protocol BrowserChromeDelegate: AnyObject { class BrowserChromeManager: NSObject, UIScrollViewDelegate { struct Constants { - static let dragThreshold: CGFloat = 30 static let zoomThreshold: CGFloat = 0.1 static let contentSizeKVOKey = "contentSize" diff --git a/DuckDuckGo/BrowsingMenu/BrowsingMenuAnimator.swift b/DuckDuckGo/BrowsingMenu/BrowsingMenuAnimator.swift index f5b5fbc572..6f1a53d398 100644 --- a/DuckDuckGo/BrowsingMenu/BrowsingMenuAnimator.swift +++ b/DuckDuckGo/BrowsingMenu/BrowsingMenuAnimator.swift @@ -61,7 +61,7 @@ final class BrowsingMenuAnimator: NSObject, UIViewControllerAnimatedTransitionin transitionContext.containerView.addSubview(fromSnapshot) } - toViewController.bindConstraints(to: fromViewController.currentTab?.webView) + toViewController.bindConstraints(to: fromViewController.viewCoordinator.contentContainer) toViewController.view.layoutIfNeeded() let snapshot = toViewController.menuView.snapshotView(afterScreenUpdates: true) diff --git a/DuckDuckGo/BrowsingMenu/BrowsingMenuViewController.swift b/DuckDuckGo/BrowsingMenu/BrowsingMenuViewController.swift index dec954d795..867f7cc79a 100644 --- a/DuckDuckGo/BrowsingMenu/BrowsingMenuViewController.swift +++ b/DuckDuckGo/BrowsingMenu/BrowsingMenuViewController.swift @@ -157,7 +157,7 @@ final class BrowsingMenuViewController: UIViewController { recalculatePreferredWidthConstraint() recalculateHeightConstraints() - webView.map(recalculateMenuConstraints(with:)) + guideView.map(recalculateMenuConstraints(with:)) if tableView.bounds.height < tableView.contentSize.height + tableView.contentInset.top + tableView.contentInset.bottom { tableView.isScrollEnabled = true @@ -166,12 +166,12 @@ final class BrowsingMenuViewController: UIViewController { } } - private weak var webView: UIView? - private var webViewFrameObserver: NSKeyValueObservation? - func bindConstraints(to webView: UIView?) { - self.webView = webView - self.webViewFrameObserver = webView?.observe(\.frame, options: [.initial]) { [weak self] webView, _ in - self?.recalculateMenuConstraints(with: webView) + private weak var guideView: UIView? + private var guideViewFrameObserver: NSKeyValueObservation? + func bindConstraints(to guideView: UIView?) { + self.guideView = guideView + self.guideViewFrameObserver = guideView?.observe(\.frame, options: [.initial]) { [weak self] guideView, _ in + self?.recalculateMenuConstraints(with: guideView) } } @@ -205,9 +205,9 @@ final class BrowsingMenuViewController: UIViewController { } } - private func recalculateMenuConstraints(with webView: UIView) { - guard let frame = webView.superview?.convert(webView.frame, to: webView.window), - let windowBounds = webView.window?.bounds + private func recalculateMenuConstraints(with guideView: UIView) { + guard let frame = guideView.superview?.convert(guideView.frame, to: guideView.window), + let windowBounds = guideView.window?.bounds else { return } let isIPad = AppWidthObserver.shared.isLargeWidth diff --git a/DuckDuckGo/MainView.swift b/DuckDuckGo/MainView.swift index b971a08a09..e5cb0798c8 100644 --- a/DuckDuckGo/MainView.swift +++ b/DuckDuckGo/MainView.swift @@ -54,6 +54,7 @@ class MainViewFactory { extension MainViewFactory { private func createViews() { + createWebViewContainer() createLogoBackground() createContentContainer() createSuggestionTrayContainer() @@ -64,13 +65,19 @@ extension MainViewFactory { createProgressView() createToolbar() } + + final class WebViewContainerView: UIView { } + private func createWebViewContainer() { + coordinator.webViewContainer = WebViewContainerView() + superview.addSubview(coordinator.webViewContainer) + } private func createProgressView() { coordinator.progress = ProgressView() superview.addSubview(coordinator.progress) } - class NavigationBarContainer: UIView { } + final class NavigationBarContainer: UIView { } private func createNavigationBarContainer() { coordinator.omniBar = OmniBar.loadFromXib() coordinator.omniBar.translatesAutoresizingMaskIntoConstraints = false @@ -79,31 +86,31 @@ extension MainViewFactory { superview.addSubview(coordinator.navigationBarContainer) } - class NotificationBarContainer: UIView { } + final class NotificationBarContainer: UIView { } private func createNotificationBarContainer() { coordinator.notificationBarContainer = NotificationBarContainer() superview.addSubview(coordinator.notificationBarContainer) } - class ContentContainer: UIView { } + final class ContentContainer: UIView { } private func createContentContainer() { coordinator.contentContainer = ContentContainer() superview.addSubview(coordinator.contentContainer) } - class StatusBackgroundView: UIView { } + final class StatusBackgroundView: UIView { } private func createStatusBackground() { coordinator.statusBackground = StatusBackgroundView() superview.addSubview(coordinator.statusBackground) } - class TabBarContainer: UIView { } + final class TabBarContainer: UIView { } private func createTabBarContainer() { coordinator.tabBarContainer = TabBarContainer() superview.addSubview(coordinator.tabBarContainer) } - class SuggestionTrayContainer: UIView { } + final class SuggestionTrayContainer: UIView { } private func createSuggestionTrayContainer() { coordinator.suggestionTrayContainer = SuggestionTrayContainer() coordinator.suggestionTrayContainer.isHidden = true @@ -136,7 +143,7 @@ extension MainViewFactory { ], animated: true) } - class LogoBackgroundView: UIView { } + final class LogoBackgroundView: UIView { } private func createLogoBackground() { coordinator.logoContainer = LogoBackgroundView() coordinator.logo = UIImageView(image: UIImage(named: "Logo")) @@ -156,6 +163,7 @@ extension MainViewFactory { extension MainViewFactory { private func constrainViews() { + constrainWebViewContainer() constrainLogoBackground() constrainContentContainer() constrainSuggestionTrayContainer() @@ -166,6 +174,16 @@ extension MainViewFactory { constrainProgress() constrainToolbar() } + + private func constrainWebViewContainer() { + let webViewContainer = coordinator.webViewContainer! + NSLayoutConstraint.activate([ + webViewContainer.constrainView(superview, by: .width), + webViewContainer.constrainView(superview, by: .height), + webViewContainer.constrainView(superview, by: .centerX), + webViewContainer.constrainView(superview, by: .centerY), + ]) + } private func constrainProgress() { let progress = coordinator.progress! @@ -333,6 +351,7 @@ class MainViewCoordinator { var toolbarFireButton: UIBarButtonItem! var toolbarForwardButton: UIBarButtonItem! var toolbarTabSwitcherButton: UIBarButtonItem! + var webViewContainer: UIView! let constraints = Constraints() diff --git a/DuckDuckGo/MainViewController.swift b/DuckDuckGo/MainViewController.swift index 90ac5af360..b5cb5f8083 100644 --- a/DuckDuckGo/MainViewController.swift +++ b/DuckDuckGo/MainViewController.swift @@ -137,6 +137,8 @@ class MainViewController: UIViewController { // Skip SERP flow (focusing on autocomplete logic) and prepare for new navigation when selecting search bar private var skipSERPFlow = true + + private var keyboardHeight: CGFloat = 0.0 required init?(coder: NSCoder) { fatalError("Use init?(code:") @@ -430,6 +432,7 @@ class MainViewController: UIViewController { @objc func onAddressBarPositionChanged() { viewCoordinator.moveAddressBarToPosition(appSettings.currentAddressBarPosition) refreshViewsBasedOnAddressBarPosition(appSettings.currentAddressBarPosition) + refreshWebViewContentInsets() } func refreshViewsBasedOnAddressBarPosition(_ position: AddressBarPosition) { @@ -475,7 +478,8 @@ class MainViewController: UIViewController { height = intersection.height findInPageBottomLayoutConstraint.constant = height - currentTab?.webView.scrollView.contentInset = UIEdgeInsets(top: 0, left: 0, bottom: height, right: 0) + keyboardHeight = height + refreshWebViewContentInsets() if let suggestionsTray = suggestionTrayController { let suggestionsFrameInView = suggestionsTray.view.convert(suggestionsTray.contentFrame, to: view) @@ -640,7 +644,7 @@ class MainViewController: UIViewController { guard let tab = tabManager.current(createIfNeeded: true) else { fatalError("Unable to create tab") } - addToView(tab: tab) + addToWebViewContainer(tab: tab) refreshControls() } else { attachHomeScreen() @@ -700,7 +704,7 @@ class MainViewController: UIViewController { controller.chromeDelegate = self controller.delegate = self - addToView(controller: controller) + addToContentContainer(controller: controller) refreshControls() syncService.scheduler.requestSyncImmediately() @@ -849,7 +853,7 @@ class MainViewController: UIViewController { private func addTab(url: URL?, inheritedAttribution: AdClickAttributionLogic.State?) { let tab = tabManager.add(url: url, inheritedAttribution: inheritedAttribution) dismissOmniBar() - addToView(tab: tab) + addToWebViewContainer(tab: tab) } func select(tabAt index: Int) { @@ -863,7 +867,7 @@ class MainViewController: UIViewController { if tab.link == nil { attachHomeScreen() } else { - addToView(tab: tab) + addToWebViewContainer(tab: tab) refreshControls() } tabsBarController?.refresh(tabsModel: tabManager.model, scrollToSelected: true) @@ -872,18 +876,29 @@ class MainViewController: UIViewController { } } - private func addToView(tab: TabViewController) { + private func addToWebViewContainer(tab: TabViewController) { removeHomeScreen() updateFindInPage() currentTab?.progressWorker.progressBar = nil currentTab?.chromeDelegate = nil - addToView(controller: tab) + currentTab?.webView.scrollView.contentInsetAdjustmentBehavior = .never + + addChild(tab) + viewCoordinator.webViewContainer.subviews.forEach { $0.removeFromSuperview() } + viewCoordinator.webViewContainer.addSubview(tab.view) + tab.view.frame = self.viewCoordinator.webViewContainer.bounds + tab.didMove(toParent: self) + + viewCoordinator.logoContainer.isHidden = true + viewCoordinator.contentContainer.isHidden = true + tab.progressWorker.progressBar = viewCoordinator.progress chromeManager.attach(to: tab.webView.scrollView) tab.chromeDelegate = self } - private func addToView(controller: UIViewController) { + private func addToContentContainer(controller: UIViewController) { + viewCoordinator.contentContainer.isHidden = false addChild(controller) viewCoordinator.contentContainer.subviews.forEach { $0.removeFromSuperview() } viewCoordinator.contentContainer.addSubview(controller.view) @@ -1314,21 +1329,45 @@ extension MainViewController: BrowserChromeDelegate { let updateBlock = { self.updateToolbarConstant(percent) self.updateNavBarConstant(percent) - + self.view.layoutIfNeeded() - self.viewCoordinator.omniBar.alpha = percent + self.viewCoordinator.navigationBarContainer.alpha = percent self.viewCoordinator.tabBarContainer.alpha = percent self.viewCoordinator.toolbar.alpha = percent } - + if animated { - UIView.animate(withDuration: ChromeAnimationConstants.duration, animations: updateBlock) + UIView.animate(withDuration: ChromeAnimationConstants.duration, animations: updateBlock) { _ in + self.refreshWebViewContentInsets() + } } else { updateBlock() + self.refreshWebViewContentInsets() } } + func refreshWebViewContentInsets() { + guard let webView = currentTab?.webView else { return } + + let top = viewCoordinator.statusBackground.frame.height + let bottom: CGFloat + if isToolbarHidden { + bottom = 0 + } else if appSettings.currentAddressBarPosition.isBottom { + bottom = viewCoordinator.toolbar.frame.height + + viewCoordinator.navigationBarContainer.frame.height + + view.safeAreaInsets.bottom + additionalSafeAreaInsets.bottom + + keyboardHeight + } else { + bottom = viewCoordinator.toolbar.frame.height + + view.safeAreaInsets.bottom + additionalSafeAreaInsets.bottom + + keyboardHeight + } + + webView.scrollView.contentInset = .init(top: top, left: 0, bottom: bottom, right: 0) + } + func setNavigationBarHidden(_ hidden: Bool) { if hidden { hideKeyboard() } @@ -1336,6 +1375,7 @@ extension MainViewController: BrowserChromeDelegate { viewCoordinator.omniBar.alpha = hidden ? 0 : 1 viewCoordinator.tabBarContainer.alpha = hidden ? 0 : 1 viewCoordinator.statusBackground.alpha = hidden ? 0 : 1 + } var canHideBars: Bool { @@ -1693,7 +1733,7 @@ extension MainViewController: TabDelegate { guard self.tabManager.model.tabs.contains(newTab.tabModel) else { return } self.dismissOmniBar() - self.addToView(tab: newTab) + self.addToWebViewContainer(tab: newTab) self.refreshOmniBar() } @@ -1797,6 +1837,7 @@ extension MainViewController: TabDelegate { func showBars() { chromeManager.reset() + refreshWebViewContentInsets() } func tabDidRequestFindInPage(tab: TabViewController) { diff --git a/DuckDuckGo/TabViewController.swift b/DuckDuckGo/TabViewController.swift index 2a970476fc..22593be12e 100644 --- a/DuckDuckGo/TabViewController.swift +++ b/DuckDuckGo/TabViewController.swift @@ -1147,7 +1147,12 @@ extension TabViewController: WKNavigationDelegate { DispatchQueue.main.async { [weak self] in guard let webView = self?.webView, webView.bounds.height > 0 && webView.bounds.width > 0 else { completion(nil); return } - UIGraphicsBeginImageContextWithOptions(webView.bounds.size, false, UIScreen.main.scale) + + let size = CGSize(width: webView.frame.size.width, + height: webView.frame.size.height - webView.scrollView.contentInset.top - webView.scrollView.contentInset.bottom) + + UIGraphicsBeginImageContextWithOptions(size, false, UIScreen.main.scale) + UIGraphicsGetCurrentContext()?.translateBy(x: 0, y: -webView.scrollView.contentInset.top) webView.drawHierarchy(in: webView.bounds, afterScreenUpdates: true) if let jsAlertController = self?.jsAlertController { jsAlertController.view.drawHierarchy(in: jsAlertController.view.bounds, diff --git a/DuckDuckGo/WebViewTransition.swift b/DuckDuckGo/WebViewTransition.swift index 8e123343ab..af7ffbc8fe 100644 --- a/DuckDuckGo/WebViewTransition.swift +++ b/DuckDuckGo/WebViewTransition.swift @@ -90,7 +90,7 @@ class FromWebViewTransition: WebViewTransition { solidBackground.backgroundColor = theme.backgroundColor solidBackground.frame = webViewFrame - imageContainer.frame = webViewFrame + imageContainer.frame = mainViewController.viewCoordinator.contentContainer.frame imageView.frame = imageContainer.bounds imageView.image = preview @@ -152,7 +152,7 @@ class ToWebViewTransition: WebViewTransition { let preview = tabSwitcherViewController.previewsSource.preview(for: tab) if let preview = preview { imageView.frame = previewFrame(for: imageContainer.bounds.size, - preview: preview) + preview: preview) } else { imageView.frame = CGRect(origin: .zero, size: imageContainer.bounds.size) } @@ -165,8 +165,10 @@ class ToWebViewTransition: WebViewTransition { scrollIfOutsideViewport(collectionView: tabSwitcherViewController.collectionView, rowIndex: rowIndex, attributes: layoutAttr) UIView.animate(withDuration: TabSwitcherTransition.Constants.duration, animations: { - self.imageContainer.frame = webViewFrame + let frame = CGRect(x: 0, y: webView.scrollView.contentInset.top, width: webViewFrame.width, height: webViewFrame.height) + self.imageContainer.frame = mainViewController.viewCoordinator.contentContainer.frame self.imageContainer.layer.cornerRadius = 0 + self.imageView.frame = self.destinationImageFrame(for: webViewFrame.size, preview: preview) self.imageView.alpha = 1 From 54d76ae1eb5b03e3fa173520bd5487a672066a1d Mon Sep 17 00:00:00 2001 From: Daniel Bernal Date: Mon, 15 Jan 2024 18:40:42 +0100 Subject: [PATCH 3/9] Add Checkmark icon to pickers (#2337) Task/Issue URL: https://app.asana.com/0/0/1206327436431895/f Description: - Adds a checkmark icon to the picker options in settings (based on design feedback) - Fixes missing translations --- DuckDuckGo/SettingsCell.swift | 25 +++-- DuckDuckGo/SettingsHostingController.swift | 19 ++++ DuckDuckGo/bg.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/cs.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/da.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/de.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/el.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/es.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/et.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/fi.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/fr.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/hr.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/hu.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/it.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/lt.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/lv.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/nb.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/nl.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/pl.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/pt.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/ro.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/ru.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/sk.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/sl.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/sv.lproj/Localizable.strings | 111 +++++++++++++++++++++ DuckDuckGo/tr.lproj/Localizable.strings | 111 +++++++++++++++++++++ 26 files changed, 2701 insertions(+), 7 deletions(-) diff --git a/DuckDuckGo/SettingsCell.swift b/DuckDuckGo/SettingsCell.swift index 2549e01d67..0e9aac945e 100644 --- a/DuckDuckGo/SettingsCell.swift +++ b/DuckDuckGo/SettingsCell.swift @@ -193,8 +193,11 @@ struct SettingsPickerCellView Void, option: String) -> some View { - return Button(action: action) { - Text(option) - .daxBodyRegular() - .foregroundColor(Color(designSystemColor: .textSecondary)) + private func getButtonWithAction(action: @escaping () -> Void, + option: String, + selected: Bool) -> some View { + return Group { + Button(action: action) { + HStack { + if selected { + Image(systemName: "checkmark") + } + Text(option) + } + } } } } diff --git a/DuckDuckGo/SettingsHostingController.swift b/DuckDuckGo/SettingsHostingController.swift index e76e7ac83b..8bbce4186e 100644 --- a/DuckDuckGo/SettingsHostingController.swift +++ b/DuckDuckGo/SettingsHostingController.swift @@ -64,3 +64,22 @@ class SettingsHostingController: UIHostingController { navigationController?.present(vc, animated: true) } } + +extension SettingsHostingController: Themable { + + func decorate(with theme: Theme) { + // Apply Theme + navigationController?.navigationBar.barTintColor = theme.barBackgroundColor + navigationController?.navigationBar.tintColor = theme.navigationBarTintColor + + if #available(iOS 15.0, *) { + let appearance = UINavigationBarAppearance() + appearance.shadowColor = .clear + appearance.backgroundColor = theme.backgroundColor + + navigationController?.navigationBar.standardAppearance = appearance + navigationController?.navigationBar.scrollEdgeAppearance = appearance + } + } + +} diff --git a/DuckDuckGo/bg.lproj/Localizable.strings b/DuckDuckGo/bg.lproj/Localizable.strings index 061fb73627..a36330566f 100644 --- a/DuckDuckGo/bg.lproj/Localizable.strings +++ b/DuckDuckGo/bg.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Интернет може да бъде и доста опасно място.\n\nНе се притеснявайте! Поверителното търсене и сърфиране е много по-лесно, отколкото си мислите."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Деактивирано"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Добре дошли в\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo за Mac притежава необходимата скорост, както и очакваните от Вас функции за сърфиране, и предлага най-добрите в този клас елементи за защита."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Включете се в списъка с чакащи и ще Ви уведомим, когато дойде Вашият ред."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Включени сте в списъка с чакащи!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Любими"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Относно DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "За нас"; + /* about page */ "settings.about.text" = "DuckDuckGo е независима компания, основана през 2008 г., за защита на личните данни в интернет за всеки, на когото му е омръзнало да бъде проследяван онлайн и иска лесно решение на проблема. Ние сме доказателство, че можете да получите реална и безкомпромисна защита на личните данни онлайн.\n\nБраузърът DuckDuckGo притежава функциите, които очаквате от един основен браузър, като отметки, раздели, пароли и много други, както и [редица мощни защити на поверителността](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), които не се предлагат в повечето популярни браузъри по подразбиране. Този уникален и комплексен набор от защити на поверителността предлага сигурност при онлайн дейностите – търсене, сърфиране, изпращане на имейли и др.\n\nЗа да работят, нашите защити на поверителността не изискват да имате технически познания или да се извършвате сложни настройки. Необходимо е да използвате браузъра DuckDuckGo на всички Ваши устройства и ще получите поверителност по подразбиране.\n\nНо ако *наистина* искате да надникнете зад кулисите, и да разберете как работят защитите на поверителността на DuckDuckGo, можете да намерите повече информация на нашите [страници за помощ](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Добавяне на приложението към панела"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Добавяне на приспособлението към началния екран"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Позиция на адресната лента"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Външен Вид"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Отваряне на връзките в свързаните приложения"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Деактивирайте, за да предотвратите автоматично отваряне на връзки в други инсталирани приложения."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Показване на предложенията за автоматично довършване"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Заключване на приложение"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Ако сте задали пръстов отпечатък, лицево разпознаване или системна парола, ще бъдете приканени да отключите приложението при отваряне."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Автоматично изчистване на данните"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Управление на прозорци за бисквитки"; + +/* Settings title for the customize section */ +"settings.customize" = "Персонализиране"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Задаване като браузър по подразбиране"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Защита на имейл"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Блокирайте имейл тракерите и скрийте своя адрес"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Споделяне на отзив"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Анимация на огнения бутон"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Огнеустойчиви сайтове"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Глобален контрол на поверителността (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Икона на приложението"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Клавиатура"; + +/* Settings title for the 'More' section */ +"settings.more" = "Още от DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Прегледи с продължително натискане"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Поверителност"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Синхронизиране и архивиране"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Размер на текста"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Тема"; + +/* Title for the Settings View */ +"settings.title" = "Настройки"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Незащитени сайтове"; + +/* Settings cell for Version */ +"settings.version" = "Версия"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Поверително гласово търсене"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Изпращане на доклад"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Разрешете достъп до микрофона в настройките на системата iOS, за да може DuckDuckGo да използва гласовите функции."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "ОК"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Изисква се достъп до микрофона"; diff --git a/DuckDuckGo/cs.lproj/Localizable.strings b/DuckDuckGo/cs.lproj/Localizable.strings index abb32718ca..ee3a8a3285 100644 --- a/DuckDuckGo/cs.lproj/Localizable.strings +++ b/DuckDuckGo/cs.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet může být trochu strašidelný.\n\nNebojte se! Anonymní vyhledávání a procházení je jednodušší, než si myslíte."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Zakázáno"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Vítejte na\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo pro Mac má rychlost, kterou potřebuješ, funkce prohlížeče, které očekáváš, a obsahuje naše nejlepší nástroje na ochranu soukromí."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Zapiš se na čekací listinu a my tě upozorníme, až budeš na řadě."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Jsi v pořadníku!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Oblíbené"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "O DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "O společnosti"; + /* about page */ "settings.about.text" = "DuckDuckGo je nezávislá společnost založená v roce 2008, která se zabývá ochranou soukromí pro všechny, kdo už mají dost sledování na internetu a chtějí snadné řešení. Jsme důkazem, že skutečná ochrana soukromí na internetu nemusí mít kompromisy.\n\nProhlížeč DuckDuckGo má všechno, co od prohlížeče očekáváš, jako jsou záložky, karty, hesla a další funkce. A k tomu má víc než [desítku účinných funkcí na ochranu soukromí](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), které většina oblíbených prohlížečů ve výchozím nastavení nenabízí. Tahle jedinečná komplexní sada na ochranu soukromí pomáhá chránit tvoje aktivity na internetu, ať už zrovna něco vyhledáváš, jen tak surfuješ, nebo posíláš e-maily.\n\nAby naše ochrana soukromí fungovala, nemusíš znát technické detaily ani řešit žádná složitá nastavení. Stačí přejít na prohlížeč DuckDuckGo ve všech zařízeních a dostaneš soukromí pro všechny své aktivity.\n\nJestli chceš nahlédnout pod pokličku, víc informací o tom, jak ochrana soukromí DuckDuckGo funguje, najdeš v naší [nápovědě](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Přidat aplikaci do docku"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Přidat widget na domovskou obrazovku"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Pozice adresního řádku"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Vzhled"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Otevřít odkazy v přidružených aplikacích"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Zakažte, chcete-li zabránit automatickému otevírání odkazů v jiných nainstalovaných aplikacích."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Zobrazit návrhy automatického doplňování"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Zámek aplikace"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Pokud je nastaveno Touch ID, Face ID nebo přístupový kód k systému, budete při otevírání požádáni o odemknutí aplikace."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Automaticky vymazat data"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Správa vyskakovacích oken ohledně cookies"; + +/* Settings title for the customize section */ +"settings.customize" = "Přizpůsobit"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Nastavit jako výchozí prohlížeč"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Ochrana e-mailu"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blokování trackerů v e-mailu a skrytí adresy"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Podělte se o zpětnou vazbu"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animace tlačítka pro mazání"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Stránky s ochranou"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Globální kontrola ochrany osobních údajů (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Ikona aplikace"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Klávesnice"; + +/* Settings title for the 'More' section */ +"settings.more" = "Další od DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Náhledy dlouhého stisknutí"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Soukromí"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synchronizace a zálohování"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Velikost textu"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Téma"; + +/* Title for the Settings View */ +"settings.title" = "Nastavení"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Nechráněné stránky"; + +/* Settings cell for Version */ +"settings.version" = "Verze"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Soukromé hlasové vyhledávání"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Odešlete zprávu"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Pro používání hlasových funkcí DuckDuckGo je potřeba v Nastaveních iOS povolit přístup k mikrofonu."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "DOBŘE"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Je nutný přístup k mikrofonu"; diff --git a/DuckDuckGo/da.lproj/Localizable.strings b/DuckDuckGo/da.lproj/Localizable.strings index e98e3aa1b8..b2c61e8c43 100644 --- a/DuckDuckGo/da.lproj/Localizable.strings +++ b/DuckDuckGo/da.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internettet kan være ret uhyggeligt.\n\nBare rolig! Det er lettere at søge og browse privat, end du tror."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Deaktiveret"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Velkommen til\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo til Mac har den hastighed, du har brug for, de browserfunktioner, du forventer, og leveres spækket med vores bedste privatlivsartikler i klassen."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Tilmeld dig ventelisten – vi giver dig besked, når det er din tur."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Du er på listen!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoritter"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Om DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Omkring"; + /* about page */ "settings.about.text" = "DuckDuckGo er en uafhængig virksomhed, grundlagt i 2008, der beskytter privatlivet på internettet for alle, der er trætte af at blive sporet online og ønsker en nem løsning. Vi er bevis på, at du kan få ægte beskyttelse af privatlivet online uden at gå på kompromis.\n\nDuckDuckGo-browseren kommer med de funktioner, du forventer af en standardbrowser, som bogmærker, faner, adgangskoder og meget mere, plus over [et dusin kraftfulde beskyttelser af privatlivet](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), som ikke tilbydes i de fleste populære browsere som standard. Dette unikke og omfattende sæt af beskyttelsesfunktioner hjælper med at beskytte dine onlineaktiviteter, fra søgning til browsing, e-mailing og meget mere.\n\nVores beskyttelse af privatlivet fungerer, uden at du behøver at vide noget om de tekniske detaljer eller håndtere komplicerede indstillinger. Det eneste, du skal gøre, er at skifte din browser til DuckDuckGo på alle dine enheder, så får du privatliv som standard.\n\nMen hvis du gerne vil have et kig under motorhjelmen, kan du finde flere oplysninger om, hvordan DuckDuckGos beskyttelse af privatlivet fungerer, på vores [hjælpesider](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Føj appen til din dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Tilføj widget til startskærmen"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Placering af adresselinje"; + +/* Settings screen appearance section title */ +"settings.appearance" = "udseende"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Åbn links i tilknyttede apps"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Deaktiver for at forhindre, at links automatisk åbnes i andre installerede apps."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Vis forslag til Autoudfyld"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Applikationslås"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Hvis Touch ID, Face ID eller en systemadgangskode er indstillet, bliver du bedt om at låse appen op, når du åbner."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Ryd data automatisk"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Administrer cookie pop op-vinduer"; + +/* Settings title for the customize section */ +"settings.customize" = "Tilpas"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Angiv som standardbrowser"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-mailbeskyttelse"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Bloker e-mailtrackere, og skjul din adresse"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Del feedback"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Ildknap-animation"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Brandsikre websteder"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "App-ikon"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tastatur"; + +/* Settings title for the 'More' section */ +"settings.more" = "Mere fra DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Eksempler med lang tryk"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privatliv"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synkronisering og sikkerhedskopiering"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Tekststørrelse"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Indstillinger"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Ubeskyttede websteder"; + +/* Settings cell for Version */ +"settings.version" = "Version"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privat stemmesøgning"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Indsend rapport"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Tillad mikrofonadgang i iOS-systemindstillinger for DuckDuckGo for at bruge stemmefunktioner."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "Okay"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Mikrofonadgang påkrævet"; diff --git a/DuckDuckGo/de.lproj/Localizable.strings b/DuckDuckGo/de.lproj/Localizable.strings index 95d908c1b6..6503e6c6db 100644 --- a/DuckDuckGo/de.lproj/Localizable.strings +++ b/DuckDuckGo/de.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Das Internet kann ein bisschen gruselig sein.\n\nKeine Sorge! Privat zu suchen und zu browsen ist einfacher als du denkst."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Deaktiviert"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Willkommen bei\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo für Mac hat die Geschwindigkeit, die du brauchst, die Browserfunktionen, die du erwartest, und ist vollgepackt mit unseren grundlegenden Funktionen für den Datenschutz."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Trage dich in die Warteliste ein, und wir benachrichtigen dich, wenn du an der Reihe bist."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Du stehst auf der Liste!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoriten"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Über DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Über"; + /* about page */ "settings.about.text" = "DuckDuckGo ist die unabhängige Firma für Internet-Datenschutz, die 2008 für alle gegründet wurde, die es leid sind, online getrackt zu werden, und eine einfache Lösung suchen. Wir sind der Beweis, dass du echten Online-Datenschutz ohne Kompromisse erhalten kannst.\n\nDer DuckDuckGo-Browser bietet die Funktionen, die von einem alltagstauglichen Browser erwartet werden, wie Lesezeichen, Tabs, Passwörter und mehr, sowie über [ein Dutzend leistungsstarke Datenschutzmaßnahmen](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), die in den meisten gängigen Browsern nicht standardmäßig angeboten werden. Dieser einzigartige, umfassende Datenschutz hilft dir, deine Online-Aktivitäten zu schützen – von der Suche über das Browsen bis hin zu E-Mails und vielem mehr.\n\nUnser Datenschutz funktioniert, ohne dass du etwas über die technischen Details wissen oder dich mit komplizierten Einstellungen auseinandersetzen musst. Du musst lediglich den Browser auf allen deinen Geräten auf DuckDuckGo umstellen und schon erhältst du echte Privatsphäre als Standard.\n\nWenn du jedoch einen Blick unter die Haube werfen möchtest, findest du auf unseren [Hilfeseiten](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/) weitere Informationen darüber, wie der Datenschutz bei DuckDuckGo funktioniert."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "App zum Dock hinzufügen"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Widget zum Startbildschirm hinzufügen"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Position der Adressleiste"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Aussehen"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Links in den dazugehörigen Apps öffnen"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Aktivieren, damit sich Links nicht automatisch in anderen installierten Apps öffnen."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Vorschläge für die Autovervollständigung"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Anwendungssperre"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Wenn Touch ID, Face ID oder ein Systempasswort eingestellt sind, wirst du aufgefordert, die App beim Öffnen zu entsperren."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Daten automatisch löschen"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Cookie-Pop-ups verwalten"; + +/* Settings title for the customize section */ +"settings.customize" = "Anpassen"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Als Standard-Browser festlegen"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-Mail-Schutz"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "E-Mail-Tracker blockieren und deine Adresse verbergen"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Feedback teilen"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animation der Schaltfläche „Feuer“"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Feuerfeste Seiten"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "App-Symbol"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tastatur"; + +/* Settings title for the 'More' section */ +"settings.more" = "Mehr von DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Vorschau durch langes Tippen"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privatsphäre"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synchronisieren und sichern"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Textgröße"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Design"; + +/* Title for the Settings View */ +"settings.title" = "Einstellungen"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Ungeschützte Websites"; + +/* Settings cell for Version */ +"settings.version" = "Version"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Private Sprachsuche"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Bericht senden"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Bitte erlaube den Mikrofonzugriff in den iOS-Systemeinstellungen, damit DuckDuckGo Sprachfunktionen nutzen kann."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Mikrofonzugriff erforderlich"; diff --git a/DuckDuckGo/el.lproj/Localizable.strings b/DuckDuckGo/el.lproj/Localizable.strings index 126acda52a..c1d8dadb77 100644 --- a/DuckDuckGo/el.lproj/Localizable.strings +++ b/DuckDuckGo/el.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Το Διαδίκτυο μπορεί να είναι κάπως ανατριχιαστικό.\n\nΜην ανησυχείτε! Το να πραγματοποιείτε αναζήτηση και περιήγηση ιδιωτικά είναι πιο εύκολο απ' όσο νομίζετε."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Απενεργοποιήθηκε"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Καλώς ορίσατε στο\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "Το DuckDuckGo για Mac έχει την ταχύτητα που χρειάζεστε, τις λειτουργίες περιήγησης που αναμένετε και περιλαμβάνει τις καλύτερες δυνατότητες απορρήτου στην κατηγορία μας."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Εγγραφείτε στη λίστα αναμονής και θα σας ειδοποιήσουμε όταν έρθει η σειρά σας."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Βρίσκεστε στη λίστα!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Αγαπημένα"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Σχετικά με το DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Σχετικά"; + /* about page */ "settings.about.text" = "Το DuckDuckGo αποτελεί την ανεξάρτητη εταιρεία προστασίας προσωπικών δεδομένων στο διαδίκτυο που ιδρύθηκε το 2008 για όσους έχουν βαρεθεί να παρακολουθούνται στο διαδίκτυο και επιθυμούν μια εύκολη λύση. Αποτελούμε τρανή απόδειξη ότι μπορείτε να αποκτήσετε πραγματική προστασία του απορρήτου σας στο διαδίκτυο χωρίς συμβιβασμούς.\n\nο πρόγραμμα περιήγησης DuckDuckGo διαθέτει τις λειτουργίες που περιμένετε από ένα πρόγραμμα περιήγησης, όπως σελιδοδείκτες, καρτέλες, κωδικούς πρόσβασης και πολλά άλλα, καθώς και πάνω από [δώδεκα ισχυρές λειτουργίες προστασίες απορρήτου](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) που δεν προσφέρονται από τα περισσότερα δημοφιλή προγράμματα περιήγησης βάσει προεπιλογής. Αυτό το μοναδικά ολοκληρωμένο σύνολο προστασίας του απορρήτου συμβάλλει στην προστασία των διαδικτυακών δραστηριοτήτων σας, από αναζήτηση έως περιήγηση, αποστολή email και πολλά άλλα.\n\nΗ προστασία απορρήτου μας λειτουργεί χωρίς να χρειάζεται να γνωρίζετε τις τεχνικές λεπτομέρειες ή να ασχολείστε με περίπλοκες ρυθμίσεις. Το μόνο που έχετε να κάνετε είναι να αλλάξετε το πρόγραμμα περιήγησής σας σε DuckDuckGo σε όλες τις συσκευές σας και θα έχετε ιδιωτικότητα βάσει προεπιλογής.\n\nΑλλά αν *θέλετε* να ρίξετε μια αναλυτική ματιά, μπορείτε να βρείτε περισσότερες πληροφορίες σχετικά με το πώς λειτουργούν οι προστασίες απορρήτου του DuckDuckGo στις [σελίδες της ενότητας Βοήθεια](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Προσθήκη εφαρμογής στο Dock σας"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Προσθήκη μικροεφαρμογής στην Αρχική οθόνη"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Θέση γραμμής διευθύνσεων"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Εμφάνιση"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Ανοίξτε τους συνδέσμους στις σχετικές εφαρμογές"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Απενεργοποιήστε για να αποτρέψετε το αυτόματο άνοιγμα συνδέσμων σε άλλες εγκατεστημένες εφαρμογές."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Εμφάνιση προτάσεων αυτόματης συμπλήρωσης"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Κλείδωμα εφαρμογής"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Εάν έχει οριστεί Touch ID, Face ID ή κωδικός πρόσβασης συστήματος, θα σας ζητηθεί να ξεκλειδώσετε την εφαρμογή κατά το άνοιγμά της."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Αυτόματη απαλοιφή δεδομένων"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Διαχείριση αναδυόμενων παραθύρων cookies"; + +/* Settings title for the customize section */ +"settings.customize" = "Προσαρμογή"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Ορισμός ως προεπιλεγμένο πρόγραμμα περιήγησης"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Προστασία email"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Αποκλείστε εφαρμογές παρακολούθησης email και αποκρύψτε τη διεύθυνσή σας"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Κοινοποίηση σχολίου"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Κινούμενο κουμπί φωτιάς"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Ασφαλείς ιστότοποι"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Παγκόσμιος έλεγχος απορρήτου (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Εικονίδιο Εφαρμογής"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Πληκτρολόγιο"; + +/* Settings title for the 'More' section */ +"settings.more" = "Περισσότερα από το DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Προεπισκοπήσεις με παρατεταμένο πάτημα"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Ιδιωτικότητα"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Συγχρονισμός και δημιουργία αντιγράφων ασφαλείας"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Μέγεθος κειμένου"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Θέμα"; + +/* Title for the Settings View */ +"settings.title" = "Ρυθμίσεις"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Μη προστατευόμενοι ιστότοποι"; + +/* Settings cell for Version */ +"settings.version" = "Έκδοση"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Ιδιωτική φωνητική αναζήτηση"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Υποβολή αναφοράς"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Επιτρέψτε πρόσβαση στο Μικρόφωνο από τις Ρυθμίσεις συστήματος iOS για να κάνει το DuckDuckGo χρήση των φωνητικών λειτουργιών."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "Εντάξει"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Απαιτείται πρόσβαση στο μικρόφωνο"; diff --git a/DuckDuckGo/es.lproj/Localizable.strings b/DuckDuckGo/es.lproj/Localizable.strings index 615e972931..26463e12de 100644 --- a/DuckDuckGo/es.lproj/Localizable.strings +++ b/DuckDuckGo/es.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet puede ser un lugar horrible.\n\nNo te preocupes. Buscar y navegar de forma privada es más fácil de lo que piensas."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Desactivado"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "¡Bienvenido a\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo para Mac tiene la velocidad que necesitas, las funciones de navegación que esperas y viene repleta de nuestros mejores Privacy Essentials."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Únete a la lista de espera y te avisaremos cuando sea tu turno."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "¡Estás en la lista!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoritos"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Acerca de DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Acerca de"; + /* about page */ "settings.about.text" = "DuckDuckGo es la empresa de privacidad en internet independiente fundada en 2008 para quienes estén cansados de ser rastreados en línea y quieran una solución sencilla. Somos la prueba de que es posible obtener protección de privacidad real en línea sin concesiones.\n\nEl navegador DuckDuckGo incluye las funciones que esperas de un navegador de referencia, como marcadores, pestañas, contraseñas y más, así como más de [una docena de potentes funciones de protección de privacidad](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) no se ofrece en la mayoría de los navegadores populares de forma predeterminada. Este conjunto completo de funciones de protección de privacidad ayuda a proteger tu actividad en línea, desde la búsqueda hasta la navegación, el correo electrónico y mucho más.\n\nNuestra protección de privacidad funciona sin necesidad de conocimientos técnicos y sin tener que lidiar con configuraciones complicadas. Lo único que tienes que hacer es cambiar el navegador a DuckDuckGo en todos tus dispositivos y obtener privacidad de forma predeterminada.\n\nSin embargo, si quieres conocer los entresijos, puedes encontrar más información sobre cómo funcionan las protecciones de privacidad de DuckDuckGo en nuestras [páginas de ayuda](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Añadir una aplicación a tu Dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Añadir widget a la pantalla de inicio"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Posición de la barra de direcciones"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Apariencia"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Abrir enlaces en aplicaciones asociadas"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Desactivar para evitar que los enlaces se abran automáticamente en otras aplicaciones instaladas."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Sugerencias de autocompletado"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Bloqueo de aplicación"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Si se establece Touch ID, Face ID o una contraseña del sistema, deberás desbloquear la aplicación al abrirla."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Borrar datos automáticamente"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Administrar ventanas emergentes de cookies"; + +/* Settings title for the customize section */ +"settings.customize" = "Personalizar"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Definir como navegador predeterminado"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Protección del correo electrónico"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Bloquea los rastreadores de correo electrónico y oculta tu dirección"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Compartir opiniones"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animación del botón Fuego"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Sitios web a prueba de fuego"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Control Global de Privacidad (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Icono de la aplicación"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Teclado"; + +/* Settings title for the 'More' section */ +"settings.more" = "Más sobre DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Vistas previas con pulsación larga"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privacidad"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sincronización y copia de seguridad"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Tamaño del texto"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Ajustes"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Sitios no protegidos"; + +/* Settings cell for Version */ +"settings.version" = "Versión"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Búsqueda privada por voz"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Enviar informe"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Permite el acceso al micrófono en la configuración del sistema de iOS para que DuckDuckGo use las funciones de voz."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "De acuerdo"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Se requiere acceso al micrófono"; diff --git a/DuckDuckGo/et.lproj/Localizable.strings b/DuckDuckGo/et.lproj/Localizable.strings index fa36677543..7f929ad35b 100644 --- a/DuckDuckGo/et.lproj/Localizable.strings +++ b/DuckDuckGo/et.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet võib olla üsna jube.\n\nÄra muretse! Privaatselt otsimine ja sirvimine on lihtsam kui arvad."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Keelatud"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Tere tulemast\nDuckDuckGo kasutajaks!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo for Mac on just nii kiire, kui vajad, oodatud sirvimisfunktsioonidega ja tulvil meie oma klassi parimaid privaatsuselemente."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Liitu ootenimekirjaga ja me anname teada, kui on sinu kord."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Oled ootenimekirjas!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Lemmikud"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "DuckDuckGo'st"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Teave"; + /* about page */ "settings.about.text" = "DuckDuckGo on 2008. aastal asutatud sõltumatu internetiprivaatsuse ettevõte igaühele, kellel on kõrini varjatud jälgimisest internetis ja kes soovib lihtsat lahendust selle vältimiseks. Me oleme tõestuseks, et internetis on võimalik saada tõelist privaatsuskaitset ilma kompromisse tegemata.\n\nDuckDuckGo brauseril on kõik funktsioonid, mida sa brauserilt ootad, nagu järjehoidjad, vahekaardid, paroolid ja palju muud, lisaks sellele aga ka üle [tosina võimsa privaatsuskaitse funktsiooni](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), mida enamik populaarsemaid brausereid vaikimisi ei paku. See ainulaadselt terviklik privaatsuskaitse aitab kaitsta sinu tegevust internetis alates otsingutest kuni sirvimiseni, meilide saatmiseni ja palju muuni.\n\nMeie privaatsuskaitse toimib ilma, et peaksid teadma midagi tehnilistest nüanssidest või tegelema keeruliste seadistustega. Ainus, mis sa pead tegema, on vahetada oma brauser kõigis seadmetes DuckDuckGo vastu – ja vaikeprivaatsus ongi tagatud.\n\nKui aga *soovid* piiluda kapoti alla, leiate lisateavet DuckDuckGo privaatsuskaitse tööpõhimõtete kohta meie [abilehtedelt](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Lisa rakendus oma dokki"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Lisa vidin avakuvale"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Aadressiriba asukoht"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Välimus"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Ava lingid seotud rakendustes"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Keela, et takistada linkide automaatset avanemist teistes installitud rakendustes."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Automaatselt täidetavad ettepanekud"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Rakenduse lukk"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Kui on määratud Touch ID, Face ID või süsteemi pääsukood, palutakse avamisel rakendus avada."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Kustuta andmed automaatselt"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Halda küpsiste hüpikaknaid"; + +/* Settings title for the customize section */ +"settings.customize" = "Kohanda"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Määrake vaikebrauseriks"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-posti kaitse"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blokeeri meilijälgurid ja peida oma aadress"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Jaga tagasisidet"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Tulenupu animatsioon"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Tulekindlad veebisaidid"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Üleilmne privaatsuskontroll (Global Privacy Control (GPC))"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Rakenduse ikoon"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Klaviatuur"; + +/* Settings title for the 'More' section */ +"settings.more" = "Veel DuckDuckGo'lt"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Pika vajutusega eelvaated"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privaatsus"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sünkroonimine ja varundamine"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Teksti suurus"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Teema"; + +/* Title for the Settings View */ +"settings.title" = "Seaded"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Kaitseta saidid"; + +/* Settings cell for Version */ +"settings.version" = "Versioon"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privaatne häälotsing"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Saada aruanne"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Häälfunktsioonide kasutamiseks lubage DuckDuckGo jaoks juurdepääs mikrofonile iOS-i süsteemiseadetes."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Vajalik juurdepääs mikrofonile"; diff --git a/DuckDuckGo/fi.lproj/Localizable.strings b/DuckDuckGo/fi.lproj/Localizable.strings index 826f7ba9f3..27e65fe237 100644 --- a/DuckDuckGo/fi.lproj/Localizable.strings +++ b/DuckDuckGo/fi.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet voi olla pelottava paikka.\n\nMutta ei hätää! Yksityinen haku ja selaaminen on helpompaa kuin luulet."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Pois käytöstä"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Tervetuloa\nDuckDuckGo-sovellukseen!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "Macin DuckDuckGo tarjoaa kaipaamasi nopeuden, odottamasi selaintoiminnot ja luokkansa parhaat tietosuojaominaisuudet."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Tule odotuslistalle, niin ilmoitamme milloin on sinun vuorosi."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Olet odotuslistalla!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Suosikit"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Tietoa DuckDuckGo:sta"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Tietoja"; + /* about page */ "settings.about.text" = "DuckDuckGo on vuonna 2008 perustettu riippumaton internetissä tietosuojaa tarjoava yritys niille, jotka ovat kyllästyneet siihen, että heitä seurataan netissä, ja haluavat yksinkertaisen ratkaisun. Olemme todiste siitä, että voit saada todellista tietosuojaa verkossa ilman kompromisseja.\n\nDuckDuckGo-selaimessa on kaikki parhaiden selainten ominaisuudet, kuten kirjanmerkit, välilehdet, salasanat ja paljon muuta, sekä yli [kymmenkunta tehokasta tietosuojausta](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) ei tarjolla oletuksena suosituimmissa selaimissa. Tämä ainutlaatuisen kattava tietosuoja auttaa turvaamaan haut, selaamisen, sähköpostin lähettämiseen ja muun toimintasi verkossa.\n\nTietosuojamme toimivat, vaikka et tietäisi mitään teknisistä yksityiskohdista tai osaisi käsitellä monimutkaisia asetuksia. Sinun tarvitsee vain vaihtaa selaimesi DuckDuckGohon kaikilla laitteillasi, ja saat tietosuojan oletuksena.\n\nJos kuitenkin haluat kurkistaa konepellin alle, lisätietoja DuckDuckGon tietosuojan toiminnasta on [ohjesivuillamme](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Lisää sovellus telakkaasi"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Lisää widget aloitusnäyttöön"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Osoitepalkin sijainti"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Ulkoasu"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Avaa linkit liittyvissä sovelluksissa"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Ota pois käytöstä estääksesi linkkejä avautumasta automaattisesti muissa asennetuissa sovelluksissa."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Näytä automaattisen täydennyksen ehdotukset"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Sovelluksen lukitus"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Jos käytössä on Touch ID, Face ID tai järjestelmän salasana, sinua pyydetään poistamaan lukitus, kun avaat sovelluksen."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Tyhjennä tiedot automaattisesti"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Evästeiden hallinnan ponnahdusikkunat"; + +/* Settings title for the customize section */ +"settings.customize" = "Mukauta"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Aseta oletusselaimeksi"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Sähköpostisuojaus"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Estä sähköpostiseuraajat ja piilota osoitteesi"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Jaa palaute"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Liekki-painikkeen animaatio"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Tee sivustoista palonkestäviä"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Sovelluskuvake"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Näppäimistö"; + +/* Settings title for the 'More' section */ +"settings.more" = "Lisää DuckDuckGolta"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Esikatselu pitkällä painalluksella"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Tietosuoja"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synkronoi ja varmuuskopioi"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Tekstin koko"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Teema"; + +/* Title for the Settings View */ +"settings.title" = "Asetukset"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Suojaamattomat sivustot"; + +/* Settings cell for Version */ +"settings.version" = "Versio"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Yksityinen äänihaku"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Lähetä raportti"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Salli mikrofonin käyttö DuckDuckGolle iOS-järjestelmäasetuksissa, jotta voit käyttää ääniominaisuuksia."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Mikrofonin käyttöoikeus vaaditaan"; diff --git a/DuckDuckGo/fr.lproj/Localizable.strings b/DuckDuckGo/fr.lproj/Localizable.strings index 75a9126c2b..59034f6ae2 100644 --- a/DuckDuckGo/fr.lproj/Localizable.strings +++ b/DuckDuckGo/fr.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet peut être intrusif.\n\nMais ne vous inquiétez pas ! Rechercher et naviguer de manière confidentielle est plus facile que vous ne le pensez."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Désactivé"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Bienvenue sur\nDuckDuckGo !"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo pour Mac répond à vos besoins de rapidité et de fonctionnalités de navigation, et dispose des meilleurs outils de leur catégorie pour protéger votre vie privée."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Inscrivez-vous sur la liste d'attente et nous vous informerons quand viendra votre tour."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Vous êtes sur liste d'attente !"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoris"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "À propos de DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "À propos"; + /* about page */ "settings.about.text" = "DuckDuckGo est une société indépendante de confidentialité sur internet fondée en 2008, destinée à tous ceux qui en ont assez d'être suivis en ligne et qui veulent une solution simple. Nous sommes la preuve que vous pouvez bénéficier d'une véritable protection de la confidentialité en ligne, sans avoir à faire de compromis.\n\nLe navigateur DuckDuckGo est doté des fonctionnalités que vous attendez d'un navigateur de référence, comme les signets, les onglets et les mots de passe, entre autres, auxquels s'ajoutent plus d'[une douzaine de protections puissantes de la confidentialité](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) que la plupart des navigateurs populaires ne proposent pas par défaut. Cet ensemble unique et complet de protections de la confidentialité permet de préserver vos activités en ligne, de la recherche à la navigation, en passant par l'envoi d'e-mails, etc.\n\nInutile de s'y connaître en détails techniques ou de gérer des paramètres complexes pour faire fonctionner nos protections de la confidentialité. Il vous suffit d'opter pour le navigateur DuckDuckGo sur tous vos appareils afin de pouvoir bénéficier de la confidentialité par défaut.\n\nMais si vous voulez vous faire une idée, vous trouverez plus d'informations sur le fonctionnement des protections de la confidentialité DuckDuckGo sur nos [pages d'aide](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Ajouter l'application à votre Dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Ajouter le widget à l'écran d'accueil"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Position de la barre d'adresse"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Apparence"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Ouvrir les liens dans les applications associées"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Désactiver pour empêcher l'ouverture automatique des liens dans d'autres applications installées."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Afficher les suggestions de saisie semi-automatique"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Verrouillage de l'application"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Si Touch ID, Face ID ou un code d'accès au système est mis en place, il vous sera demandé de déverrouiller l'application lors de l'ouverture."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Effacer automatiquement les données"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Gérer les fenêtres contextuelles (cookies)"; + +/* Settings title for the customize section */ +"settings.customize" = "Personnaliser"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Définir comme navigateur par défaut"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Protection des e-mails"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Bloquez les traqueurs d'e-mails et masquez votre adresse"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Partagez vos commentaires"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animation du bouton en forme de flamme"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Sites coupe-feu"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Icône de l'appli"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Clavier"; + +/* Settings title for the 'More' section */ +"settings.more" = "Plus de la part de DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Aperçus obtenus en appuyant longuement"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Confidentialité"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synchronisation et sauvegarde"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Taille du texte"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Thème"; + +/* Title for the Settings View */ +"settings.title" = "Paramètres"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Sites non protégés"; + +/* Settings cell for Version */ +"settings.version" = "Version"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Recherche vocale privée"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Envoyer le rapport"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Veuillez autoriser l'accès au microphone dans les réglages système iOS pour que DuckDuckGo puisse utiliser les fonctionnalités vocales."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Accès au microphone requis"; diff --git a/DuckDuckGo/hr.lproj/Localizable.strings b/DuckDuckGo/hr.lproj/Localizable.strings index 504e878a56..7b3f1fb95a 100644 --- a/DuckDuckGo/hr.lproj/Localizable.strings +++ b/DuckDuckGo/hr.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet može biti pomalo neugodan.\n\nNe brini! Privatno pretraživanje i pregledavanje lakše je nego što misliš."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Onemogućeno"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Dobro došao/la u\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "Aplikacija DuckDuckGo za Mac pruža ti potrebnu brzinu i značajke pretraživanja kakve očekuješ, a isporučuje se s našim najboljim alatima za privatnost u svojoj klasi - privacy essentials."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Pridruži se listi čekanja, a mi ćemo te obavijestiti kada dođeš na red."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Na popisu ste!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Omiljeno"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "O DuckDuckGou"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "O nama"; + /* about page */ "settings.about.text" = "DuckDuckGo neovisna je tvrtka za privatnost na internetu osnovana 2008. godine. Namijenjena je svakome tko je umoran od toga da ga prate na internetu i želi jednostavno rješenje za to. Mi smo dokaz da je prava zaštita privatnosti na internetu moguća bez kompromisa.\n\nPreglednik DuckDuckGo dolazi sa značajkama koje očekujete od preglednika, kao što su oznake, kartice, lozinke i još mnogo toga, plus više od [desetak moćnih zaštita privatnosti](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) nije ponuđeno u većini popularnih preglednika prema zadanim postavkama. Ovaj jedinstveno sveobuhvatan skup zaštita privatnosti pomaže u zaštiti tvojih mrežnih aktivnosti, od pretraživanja do pregledavanja, slanja e-pošte i još mnogo toga.\n\nNaša zaštita privatnosti funkcionira bez potrebe da znamo bilo što o tehničkim detaljima ili da se bavimo kompliciranim postavkama. Sve što trebaš učiniti jest prebaciti svoj preglednik na DuckDuckGo na svim svojim uređajima i prema zadanim postavkama dobivaš našu zaštitu privatnosti.\n\nAli ako *želite* zaviriti \"ispod haube\", više o tome kako DuckDuckGo zaštita privatnosti funkcionira možeš pronaći na našim [stranicama pomoći](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Dodajte aplikaciju na Dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Dodajte widget na početni zaslon"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Položaj adresne trake"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Izgled"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Otvori veze u povezanim aplikacijama"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Onemogući da spriječiš automatsko otvaranje poveznica u drugim instaliranim aplikacijama."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Prikaži prijedloge za automatsko ispunjavanje"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Zaključavanje aplikacije"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Ako su postavljeni Touch ID, Face ID ili pristupni kôd sustava, od tebe će se tražiti da otključaš aplikaciju prilikom otvaranja."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Automatsko brisanje podataka"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Upravljanje skočnim prozorima kolačića"; + +/* Settings title for the customize section */ +"settings.customize" = "Prilagodba"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Postavi kao zadani preglednik"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Zaštita e-pošte"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blokiraj programe za praćenje e-pošte i sakrij svoju adresu"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Podijeli povratne informacije"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animacija gumba Vatre"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Zaštićena web-mjesta"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Globalna kontrola privatnosti (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Ikona aplikacije"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tipkovnica"; + +/* Settings title for the 'More' section */ +"settings.more" = "Više od DuckDuckGoa"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Pretpregledi na dugi pritisak"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Zaštita privatnosti"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sinkronizacija i sigurnosno kopiranje"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Veličina teksta"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Postavke"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Nezaštićena web-mjesta"; + +/* Settings cell for Version */ +"settings.version" = "Verzija"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privatno glasovno pretraživanje"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Pošalji izvješće"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Dopustite pristup mikrofonu u postavkama sustava iOS kako bi DuckDuckGo mogao koristiti glasovne funkcije."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "U redu"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Potreban je pristup mikrofonu"; diff --git a/DuckDuckGo/hu.lproj/Localizable.strings b/DuckDuckGo/hu.lproj/Localizable.strings index a7707b528b..ad73f354d0 100644 --- a/DuckDuckGo/hu.lproj/Localizable.strings +++ b/DuckDuckGo/hu.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Az internet meglehetősen undok hely lehet.\n\nNe aggódj! A bizalmas keresés és böngészés egyszerűbb, mint hinnéd."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Letiltva"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Üdvözlünk a\nDuckDuckGo-ban!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "A DuckDuckGo Mac verziója gyors, böngészési funkciókban gazdag, és kategóriája legjobb adatvédelmi megoldásait kínálja."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Iratkozz fel a várólistára, és értesítést kapsz, ha rád kerül a sor."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Felkerültél a listára!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Kedvencek"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "A DuckDuckGóról"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Rólunk"; + /* about page */ "settings.about.text" = "A 2008-ban alapított független internetes adatvédelmi cég, a DuckDuckGo egyszerű megoldást kínál azoknak, akiknek elegük van abból, hogy állandóan nyomon követik őket az interneten. Mi vagyunk annak a bizonyítéka, hogy kompromisszumok nélkül is lehet valódi online adatvédelmet biztosítani.\n\nA DuckDuckGo böngésző rendelkezik a böngészőktől elvárt funkciókkal, mint például könyvjelzők, lapok, jelszavak és egyéb funkciók, valamint több mint [egy tucat olyan hatékony adatvédelmi megoldással](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), amelyet a legtöbb népszerű böngésző nem kínál alapértelmezés szerint. Ezek az egyedülállóan átfogó adatvédelmi megoldások segítenek megvédeni online tevékenységeid, legyen szó keresésről, böngészésről, e-mailezésről vagy sok minden másról.\n\nAdatvédelmi megoldásaink anélkül működnek, hogy bármit is tudnod kellene a technikai részletekről vagy bonyolult beállításokkal kellene foglalkoznod. Mindössze annyit kell tenned, hogy minden eszközödön a DuckDuckGo böngészőre váltasz, és máris igénybe veheted az alapértelmezés szerinti adatvédelmet.\n\nHa azonban *igazán* szeretnél bepillantani a motorháztető alá is, a [súgóoldalainkon](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/) további információkat találhatsz a DuckDuckGo adatvédelmi megoldásainak működéséről."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Alkalmazás hozzáadása a dokkodhoz"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Minialkalmazás hozzáadása a kezdőképernyőhöz"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Címsor elhelyezkedése"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Megjelenés"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Hivatkozások megnyitása társított alkalmazásokban"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Letiltásával megakadályozhatod, hogy a hivatkozások automatikusan megnyíljanak más telepített alkalmazásokban."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Automatikus kiegészítési javaslatok megjelenítése"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Alkalmazás zárolás"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Ha be van állítva ujjlenyomat- vagy arcfelismerés, illetve rendszerjelszó, megnyitásakor fel kell oldanod az alkalmazást."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Adatok automatikus törlése"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Felugró sütiablakok kezelése"; + +/* Settings title for the customize section */ +"settings.customize" = "Testreszabás"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Beállítás alapértelmezett böngészőként"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-mail védelem"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "E-mail nyomkövetők letiltása, és a cím elrejtése"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Visszajelzés megosztása"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Tűz gomb animáció"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Tűzálló weboldalak"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Nemzetközi adatvédelmi szabályozás (Global Privacy Control, GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Alkalmazásikon"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Billentyűzet"; + +/* Settings title for the 'More' section */ +"settings.more" = "Továbbiak a DuckDuckGo-tól"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Hosszú lenyomásos előnézetek"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Adatvédelem"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Szinkronizálás és biztonsági mentés"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Szövegméret"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Kinézet"; + +/* Title for the Settings View */ +"settings.title" = "Beállítások"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Védelem nélküli weboldalak"; + +/* Settings cell for Version */ +"settings.version" = "Változat"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privát beszédhangalapú keresés"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Jelentés beküldése"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "A beszédhangfunkciók használatához az iOS rendszerbeállításaiban engedélyezd a DuckDuckGo számára a Mikrofon-hozzáférést."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Mikrofon-hozzáférés szükséges"; diff --git a/DuckDuckGo/it.lproj/Localizable.strings b/DuckDuckGo/it.lproj/Localizable.strings index f716346440..684b99592b 100644 --- a/DuckDuckGo/it.lproj/Localizable.strings +++ b/DuckDuckGo/it.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet può essere un po' inquietante.\n\nNon preoccuparti! Effettuare ricerche e navigare in modo privato è più facile di quanto pensi."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Disattivato"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "DuckDuckGo\nti dà il benvenuto!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo per Mac ti offre la velocità di cui hai bisogno, le funzioni di navigazione che desideri e i migliori strumenti per la privacy."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Iscriviti alla lista d'attesa e ti avviseremo quando sarà il tuo turno."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Sei in lista d'attesa."; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Preferiti"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Info su DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Informazioni"; + /* about page */ "settings.about.text" = "Fondata nel 2008, DuckDuckGo è un'azienda indipendente che tutela la privacy online per tutti coloro che sono stanchi di essere tracciati online e vogliono una soluzione semplice. Siamo la dimostrazione che si può garantire una vera protezione della privacy online senza compromessi.\n\nIl browser DuckDuckGo è ricco di funzioni essenziali come i segnalibri, le schede, le password e molto altro ancora, [oltre a numerose e potenti protezioni della privacy](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) che normalmente non vengono offerte dai browser più comuni. Stiamo parlando di uno straordinario set completo per la protezione della privacy, che aiuta a proteggere le attività online, dalla ricerca alla navigazione, alle e-mail e molto altro ancora.\n\nCon le nostre protezioni della privacy non è necessario conoscere particolari tecnici o dover affrontare configurazioni complesse. È sufficiente scegliere il browser DuckDuckGo su tutti i dispositivi personali per avere automaticamente garantita la privacy.\n\nPer saperne di più su come funzionano le protezioni della privacy di DuckDuckGo, è possibile consultare le nostre [pagine di aiuto](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Aggiungi app al tuo dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Aggiungi widget alla schermata iniziale"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Posizione Barra degli indirizzi"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Aspetto"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Apri i collegamenti nelle loro app associate"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Disattiva per impedire che i collegamenti si aprano automaticamente in altre app installate."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Mostra suggerimenti di completamento automatico"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Blocco applicazione"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Se hai impostato Touch ID, Face ID o un codice di accesso al sistema, ti verrà richiesto di sbloccare l'app all'apertura."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Cancellazione automatica dei dati"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Gestione popup dei cookie"; + +/* Settings title for the customize section */ +"settings.customize" = "Personalizza"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Imposta come browser predefinito"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Protezione email"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blocca i sistemi di tracciamento delle email e nascondi il tuo indirizzo"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Condividi feedback"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animazione pulsante fuoco"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Siti protetti"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Icona dell'app"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tastiera"; + +/* Settings title for the 'More' section */ +"settings.more" = "Ulteriori informazioni su DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Anteprime con pressione prolungata"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privacy"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sincronizzazione e backup"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Dimensione testo"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Impostazioni"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Siti non protetti"; + +/* Settings cell for Version */ +"settings.version" = "Versione"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Ricerca vocale privata"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Invia segnalazione"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Consenti l'accesso al microfono nelle impostazioni di sistema di iOS, in modo che DuckDuckGo possa utilizzare le funzioni vocali."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Accesso al microfono obbligatorio"; diff --git a/DuckDuckGo/lt.lproj/Localizable.strings b/DuckDuckGo/lt.lproj/Localizable.strings index e43dd1e7fb..4e4bec80ab 100644 --- a/DuckDuckGo/lt.lproj/Localizable.strings +++ b/DuckDuckGo/lt.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internetas gali būti bauginantis.\n\nNesijaudink! Ieškoti ir naršyti privačiai yra lengviau, nei manai."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Išjungta"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Sveiki atvykę į\n„DuckDuckGo“!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "„Mac“ skirta „DuckDuckGo“ pasižymi jums reikiama sparta, naršymo funkcijomis ir aukščiausios klasės privatumo įrankiais."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Prisijunkite prie laukiančiųjų sąrašo ir mes jums pranešime, kai ateis jūsų eilė."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Esate sąraše!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Mėgstami"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Apie DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Apie"; + /* about page */ "settings.about.text" = "„DuckDuckGo“ yra nepriklausoma interneto privatumo bendrovė, įkurta 2008 metais ir skirta visiems, kurie pavargo nuo sekimo internete ir nori lengvo sprendimo. Esame įrodymas, kad galite gauti tikrą privatumo apsaugą internete be kompromisų.\n\n„DuckDuckGo“ naršyklėje yra funkcijos, kurių tikitės iš pagrindinės naršyklės, pvz., žymės, skirtukai, slaptažodžiai ir dar daugiau, taip pat [keliolika galingų privatumo apsaugos priemonių](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) pagal numatytuosius nustatymus nėra siūlomas daugelyje populiarių naršyklių. Šis unikalus išsamus privatumo apsaugos rinkinys padeda apsaugoti jūsų veiklą internete – nuo paieškos iki naršymo, el. pašto ir kt.\n\nMūsų privatumo apsaugos priemonės veikia nereikalaudamos nieko žinoti apie technines detales ar naudotis sudėtingais nustatymais. Tereikia visuose įrenginiuose perjungti naršyklę į „DuckDuckGo“ ir privatumas bus užtikrintas pagal numatytuosius nustatymus.\n\nTačiau jei norite žvilgtelėti po gaubtu, daugiau informacijos apie tai, kaip veikia „DuckDuckGo“ privatumo apsauga, galite rasti mūsų [pagalbos puslapiuose] (ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Įtraukti programėlę į stotelę"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Įtraukti valdiklį į pagrindinį ekraną"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Adreso juostos padėtis"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Išvaizda"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Atidaryti nuorodas susijusiose programose"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Išjungti, kad nuorodos automatiškai neatsidarytų kitose įdiegtose programose."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Rodyti automatinio užbaigimo pasiūlymus"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Programos užraktas"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Jei nustatytas „Touch ID“, „Face ID“ arba sistemos slaptažodis, prieš atidarydami būsite paprašyti atrakinti programą."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Automatiškai valyti duomenis"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Valdyti slapukų iššokančiuosius langus"; + +/* Settings title for the customize section */ +"settings.customize" = "Tinkinti"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Nustatyti kaip numatytąją naršyklę"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "El. pašto apsauga"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blokuokite el. laiškų sekimo priemones ir paslėpkite savo adresą"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Bendrinti atsiliepimą"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Mygtuko „Fire“ animacija"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Apsaugoti svetaines"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Visuotinė privatumo kontrolė (VPK)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Programėlės piktograma"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Klaviatūra"; + +/* Settings title for the 'More' section */ +"settings.more" = "Daugiau iš „DuckDuckGo“"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Peržiūros ilgai spaudžiant"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privatumas"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sinchronizuoti ir kurti atsarginę kopiją"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Teksto dydis"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Nustatymai"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Neapsaugotos svetainės"; + +/* Settings cell for Version */ +"settings.version" = "Versija"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privati paieška balsu"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Pateikti ataskaitą"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Patvirtinkite prieigą prie mikrofono „iOS“ sistemos nustatymuose, kad galėtumėte naudotis „DuckDuckGo“ balsu valdomomis funkcijomis."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "GERAI"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Būtina prieiga prie mikrofono"; diff --git a/DuckDuckGo/lv.lproj/Localizable.strings b/DuckDuckGo/lv.lproj/Localizable.strings index d1d9b49cd2..63199eb68c 100644 --- a/DuckDuckGo/lv.lproj/Localizable.strings +++ b/DuckDuckGo/lv.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internets var būt diezgan “mežonīgs”.\n\nBet neuztraucies! Meklēt un pārlūkot privātā režīmā ir vieglāk, nekā tu domā."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Atspējota"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Laipni lūdzam\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo Mac datoram sniedz nepieciešamo ātrumu, ierastās pārlūkošanas funkcijas un savā klasē labākās privātuma pamatfunkcijas."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Pievienojies gaidīšanas sarakstam, un mēs paziņosim, kad pienāks tava kārta."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Tu esi sarakstā!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Izlase"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Par DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Par"; + /* about page */ "settings.about.text" = "DuckDuckGo ir neatkarīgs 2008. gadā dibināts interneta privātuma uzņēmums ikvienam, kam ir apnikusi izsekošana tiešsaistē un kas vēlas vienkāršu risinājumu. Mēs esam pierādījums tam, ka tiešsaistē var iegūt reālu privātuma aizsardzību bez kompromisiem.\n\nDuckDuckGo pārlūks sniedz visas iespējas, ko gaidi no pārlūkprogrammas, piemēram, grāmatzīmes, cilnes, paroles un citas, kā arī vairāk nekā [duci spēcīgu privātuma aizsardzības funkciju](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) pēc noklusējuma netiek piedāvāts lielākajā daļā populārāko pārlūkprogrammu. Šis unikāli visaptverošais privātuma aizsardzības komplekts palīdz aizsargāt tavas darbības tiešsaistē, sākot no meklēšanas līdz pārlūkošanai, e-pasta sūtīšanai u.c.\n\nMūsu privātuma aizsardzība darbojas vienmēr – tev nav jāpārzina sarežģīti tehniskie aspekti vai iestatījumi. Tev vienkārši jālieto DuckDuckGo pārlūks visās savās ierīcēs, un privātums būs tavs standarta risinājums.\n\nBet, ja vēlies paskatīties, kas lācītim vēderā, vairāk informācijas par to, kā darbojas DuckDuckGo privātuma aizsardzība, vari atrast mūsu [palīdzības lapās](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Pievienot lietotni dokam"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Pievienot logrīku sākuma ekrānam"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Adreses joslas pozīcija"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Parādas"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Atvērt saites saistītajās lietotnēs"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Atspējo, lai novērstu saišu automātisku atvēršanu citās instalētajās lietotnēs."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Automātiski pabeigt ieteikumus"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Lietojumprogrammas bloķēšana"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Ja ir iestatīts Touch ID, Face ID vai sistēmas piekļuves kods, atverot lietotni, tev tā būs jāatbloķē."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Automātiski notīrīt datus"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Pārvaldīt sīkfailu uznirstošos logus"; + +/* Settings title for the customize section */ +"settings.customize" = "Pielāgošana"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Iestatīt kā noklusējuma pārlūku"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-pasta aizsardzība"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Bloķē e-pasta izsekotājus un paslēp savu adresi"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Kopīgot atsauksmi"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Uguns pogas animācija"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Ugunsdrošas vietnes"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Globālā privātuma kontrole (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Lietotnes ikona"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tastatūra"; + +/* Settings title for the 'More' section */ +"settings.more" = "Vairāk no DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Ilgas nospiešanas rezultātu priekšskatījumi"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privātums"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sinhronizācija un dublēšana"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Burtu izmērs"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Motīvs"; + +/* Title for the Settings View */ +"settings.title" = "Iestatījumi"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Neaizsargātas vietnes"; + +/* Settings cell for Version */ +"settings.version" = "Versija"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privātā balss meklēšana"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Iesniegt ziņojumu"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Lūdzu, atļauj piekļuvi mikrofonam iOS sistēmas iestatījumos, lai DuckDuckGo varētu izmantot balss funkcijas."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "Labi"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Nepieciešama piekļuve mikrofonam"; diff --git a/DuckDuckGo/nb.lproj/Localizable.strings b/DuckDuckGo/nb.lproj/Localizable.strings index 4ba3fd4bb7..df08d26c91 100644 --- a/DuckDuckGo/nb.lproj/Localizable.strings +++ b/DuckDuckGo/nb.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internettet kan være ganske skummelt.\n\nMen ikke vær redd! Det er enklere enn du tror å søke og surfe privat."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Deaktivert"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Velkommen til\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo for Mac har hastigheten du trenger, nettleserfunksjonene du forventer, og er stappfull av våre førsteklasses personvernfunksjoner."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Sett deg på ventelisten, så varsler vi deg når det er din tur."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Du står på listen!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoritter"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Om DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Om"; + /* about page */ "settings.about.text" = "DuckDuckGo er et uavhengig personvernselskap som ble grunnlagt i 2008, for alle som er lei av å bli sporet på nettet og vil ha en enkel løsning. Vi er beviset på at ekte personvern er mulig på nettet uten å fire på kravene.\n\nDuckDuckGo-nettleseren har funksjoner du kan forvente i en vanlig nettleser, som bokmerker, faner, passord med mer, pluss over [en rekke kraftige personvernfunksjoner](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) ikke tilbys i de fleste populære nettlesere som standard. Disse usedvanlig omfattende personvernfunksjonene bidrar til å beskytte nettaktivitetene dine, fra søk til surfing, e-poster med mer.\n\nPersonvernfunksjonene fungerer uten at du behøver å kunne noe om de tekniske detaljene eller forholde deg til kompliserte innstillinger. Det eneste du behøver å gjøre, er å bytte nettleser til DuckDuckGo på alle enhetene dine, så får du personvern som standard.\n\nMen hvis du *vil* ta en titt under panseret, kan du finne mer informasjon om hvordan DuckDuckGos personvern fungerer på våre [hjelpesider](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Legg til appen i docken"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Legg til widgeten på startskjermen"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Plassering av adressefelt"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Utseende"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Åpne lenker i tilknyttede apper"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Deaktiver for å forhindre at lenker automatisk åpnes i andre installerte apper."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Vis forslag fra autofullføring"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Applås"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Hvis du har touch-ID, face-ID eller systempassord, blir du bedt om å låse opp appen når du åpner den."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Slett data automatisk"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Administrer vinduer om informasjonskapsler"; + +/* Settings title for the customize section */ +"settings.customize" = "Tilpass"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Gjør til standardnettleser"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-postbeskyttelse"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blokker e-postsporere og skjul adressen din"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Del tilbakemelding"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animasjon for brannknappen"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Brannsikre nettsteder"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Appikon"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tastatur"; + +/* Settings title for the 'More' section */ +"settings.more" = "Mer fra DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Forhåndsvisning ved å trykke og holde"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Personvern"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synkronisering og sikkerhetskopiering"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Tekststørrelse"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Utseende"; + +/* Title for the Settings View */ +"settings.title" = "Innstillinger"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Ubeskyttede nettsteder"; + +/* Settings cell for Version */ +"settings.version" = "Versjon"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privat talesøk"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Send inn rapport"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "For å bruke talefunksjoner må du gi DuckDuckGo mikrofontilgang i systeminnstillingene i iOS."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Mikrofontilgang kreves"; diff --git a/DuckDuckGo/nl.lproj/Localizable.strings b/DuckDuckGo/nl.lproj/Localizable.strings index 6400390238..8bb6435aff 100644 --- a/DuckDuckGo/nl.lproj/Localizable.strings +++ b/DuckDuckGo/nl.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet kan best eng zijn.\n\nMaak je geen zorgen! Privé zoeken en browsen is eenvoudiger dan je denkt."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Uitgeschakeld"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Welkom bij\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo voor Mac heeft de snelheid die je nodig hebt en de browsefuncties die je verwacht, en zit boordevol met onze allerbeste privacy essentials."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Schrijf je in op de wachtlijst, dan laten wij je weten wanneer je Network Protection kan testen."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Je staat op de lijst!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favorieten"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Over DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Over"; + /* about page */ "settings.about.text" = "DuckDuckGo is het onafhankelijke internetprivacybedrijf, opgericht in 2008, voor iedereen die het beu is om online gevolgd te worden en daar een eenvoudige oplossing voor wil. Wij zijn het bewijs dat je privacy op internet écht beschermd kan worden zonder compromissen.\n\nDe DuckDuckGo-browser wordt geleverd met de functies die je van een webbrowser verwacht, zoals bladwijzers, tabbladen, wachtwoorden en meer, plus meer dan [een dozijn krachtige tools om je privacy te beschermen](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) die niet standaard worden aangeboden in de meeste populaire browsers. Deze unieke, uitgebreide privacybescherming helpt je online activiteiten te beschermen – of je nu zoekt, surft of mailt.\n\nJe hoeft niets te weten over de technische details of ingewikkelde instellingen om te profiteren van onze privacybescherming. Je hoeft alleen maar DuckDuckGo op al je apparaten te installeren en geniet dan standaard van privacy.\n\nMaar als je *een kijkje onder de motorkap* wilt, vind je meer informatie over de privacybescherming van DuckDuckGo op onze [hulppagina's](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "App toevoegen aan je dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Widget toevoegen aan startscherm"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Positie van adresbalk"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Uiterlijk"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Links openen in bijbehorende apps"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Uitschakelen om te voorkomen dat links automatisch geopend worden in andere geïnstalleerde apps."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Suggesties voor automatisch aanvullen weergeven"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "App-vergrendeling"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Als je Touch ID, Face ID of een systeemwachtwoord hebt ingesteld, word je gevraagd om de app te ontgrendelen als je deze opent."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Gegevens automatisch wissen"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Cookiepop-ups beheren"; + +/* Settings title for the customize section */ +"settings.customize" = "Aanpassen"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Instellen als standaardbrowser"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-mailbescherming"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blokkeer e-mailtrackers en verberg je adres"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Feedback delen"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animatie vuurknop"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Brandveilige websites"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "App-pictogram"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Toetsenbord"; + +/* Settings title for the 'More' section */ +"settings.more" = "Meer over DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Voorbeeldweergave bij lang indrukken"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privacy"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synchronisatie en back-up"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Lettergrootte"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Thema"; + +/* Title for the Settings View */ +"settings.title" = "Instellingen"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Onbeschermde sites"; + +/* Settings cell for Version */ +"settings.version" = "Versie"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Private spraakzoekopdracht"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Rapport versturen"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Sta microfoontoegang toe in de iOS-systeeminstellingen zodat DuckDuckGo spraakfuncties kan gebruiken."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Toegang tot microfoon vereist"; diff --git a/DuckDuckGo/pl.lproj/Localizable.strings b/DuckDuckGo/pl.lproj/Localizable.strings index 41fb7ca596..9ff0ac664b 100644 --- a/DuckDuckGo/pl.lproj/Localizable.strings +++ b/DuckDuckGo/pl.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet może być trochę nieprzyjemny.\n\nBez obaw! Prywatne wyszukiwanie i przeglądanie jest łatwiejsze niż myślisz."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Wyłączone"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Witamy\nw DuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "Aplikacja DuckDuckGo dla komputerów Mac zapewnia szybkość, której potrzebujesz, i niezbędne funkcje przeglądania. Ponadto jest wyposażona w najlepsze w swojej klasie narzędzia do ochrony prywatności."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Dołącz do listy oczekujących, aby otrzymać powiadomienie, gdy nadejdzie Twoja kolej."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Jesteś na liście!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Ulubione"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "O DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Informacje"; + /* about page */ "settings.about.text" = "DuckDuckGo to założona w 2008 roku niezależna firma zajmująca się prywatnością w Internecie dla osób, które mają dosyć śledzenia online i poszukują łatwego w obsłudze rozwiązania. Jesteśmy dowodem na to, że możesz uzyskać prawdziwą ochronę prywatności online bez kompromisów.\n\nPrzeglądarka DuckDuckGo jest wyposażona w funkcje, których potrzebujesz, takie jak zakładki, karty, hasła i inne, a także [kilkanaście zaawansowanych mechanizmów ochrony prywatności](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), które nie są domyślnie oferowane w większości popularnych przeglądarek. Ten wyjątkowo zaawansowany zestaw mechanizmów ochrony prywatności pomaga chronić działania w Internecie, od wyszukiwania po przeglądanie, obsługę wiadomości e-mail i nie tylko.\n\nDo korzystania z mechanizmów ochrony prywatności nie jest wymagana znajomość szczegółów technicznych ani skomplikowane ustawienia. Aby uzyskać ochronę prywatności, wystarczy ustawić na wszystkich urządzeniach domyślną przeglądarkę DuckDuckGo.\n\nJeśli interesują Cię szczegóły techniczne, więcej informacji o działaniu mechanizmów ochrony prywatności DuckDuckGo można znaleźć na [stronach pomocy](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Dodaj aplikację do Docka"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Dodaj widżet do ekranu głównego"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Pozycja paska adresu"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Wygląd"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Otwieraj łącza w powiązanych aplikacjach"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Wyłącz, aby uniemożliwić automatyczne otwieranie łączy w innych zainstalowanych aplikacjach."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Pokaż sugestie autouzupełniania"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Blokada aplikacji"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Jeśli ustawiono Touch ID, Face ID lub hasło systemowe, pojawi się prośba o odblokowanie aplikacji podczas otwierania."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Automatyczne czyszczenie danych"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Zarządzaj okienkami z prośbą o zgodę"; + +/* Settings title for the customize section */ +"settings.customize" = "Spersonalizuj"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Ustaw jako domyślną przeglądarkę"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Ochrona poczty e-mail"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Zablokuj skrypty śledzące pocztę e-mail i ukryj swój adres"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Podziel się opinią"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animacja przycisku ognia"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Bezpieczne witryny internetowe"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Globalna Kontrola Prywatności (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Ikona aplikacji"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Klawiatura"; + +/* Settings title for the 'More' section */ +"settings.more" = "Więcej możliwości DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Podglądy po dłuższym przyciśnięciu"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Prywatność"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synchronizacja i kopia zapasowa"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Rozmiar tekstu"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Motyw"; + +/* Title for the Settings View */ +"settings.title" = "Ustawienia"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Niezabezpieczone witryny"; + +/* Settings cell for Version */ +"settings.version" = "Wersja"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Prywatne wyszukiwanie głosowe"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Prześlij raport"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Aby korzystać z funkcji głosowych, zezwól na dostęp DuckDuckGo do mikrofonu w ustawieniach systemu iOS."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Wymagany dostęp do mikrofonu"; diff --git a/DuckDuckGo/pt.lproj/Localizable.strings b/DuckDuckGo/pt.lproj/Localizable.strings index f3f8f372a4..ad0fb49df3 100644 --- a/DuckDuckGo/pt.lproj/Localizable.strings +++ b/DuckDuckGo/pt.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "A Internet pode ser um pouco assustadora.\n\nMas não se preocupe! Pesquisar e navegar em privado é mais fácil do que pensa."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Desativado"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Damos-lhe as boas-vindas ao\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "O DuckDuckGo para Mac tem a velocidade de que necessita, as funcionalidades de navegação que espera e os nossos Privacy Essentials líderes no setor."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Entra na lista de espera. Avisamos-te quando for a tua vez."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Está na lista!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoritos"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Sobre o DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Acerca de"; + /* about page */ "settings.about.text" = "A DuckDuckGo é a empresa independente de privacidade na Internet fundada em 2008 para quem está cansado de ser rastreado online e quer uma solução simples. Somos a prova de que podes proteger a tua privacidade online sem compromissos.\n\nO navegador DuckDuckGo vem com as funcionalidades que esperas num navegador de referência, como marcadores, separadores, palavras-passe, entre outras, além de mais de [uma dúzia de proteções de privacidade poderosas](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) que os navegadores mais populares não oferecem por predefinição. Este conjunto especialmente abrangente de proteções de privacidade ajuda a proteger as tuas atividades online, desde a pesquisa à navegação, e-mails, entre outras.\n\nPara utilizares as nossas proteções de privacidade, não tens de saber nada sobre os detalhes técnicos nem lidar com definições complicadas. Tudo o que tens de fazer é mudar o teu navegador para o DuckDuckGo em todos os teus dispositivos e desfrutar de privacidade como predefinição.\n\nMas *se* quiseres espreitar os bastidores, podes consultar mais informações sobre como funcionam as proteções de privacidade do DuckDuckGo nas nossas [páginas de ajuda](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Adicionar aplicação à sua dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Adicionar widget ao ecrã inicial"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Posição da barra de endereços"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Aparência"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Abrir links nas aplicações associadas"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Desative para prevenir que ligações sejam abertas automaticamente noutras aplicações instaladas."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Mostrar sugestões de preenchimento automático"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Bloqueio de aplicações"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Se o Touch ID, Face ID ou um código de acesso estiverem definidos, ser-lhe-á pedido o desbloqueio da aplicação ao abrir."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Limpar os dados automaticamente"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Gerir pop-ups de cookies"; + +/* Settings title for the customize section */ +"settings.customize" = "Personalizar"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Definir como navegador padrão"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Proteção de e-mail"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Bloqueie rastreadores de e-mail e oculte o seu endereço."; + +/* Settings cell for Feedback */ +"settings.feedback" = "Partilhar comentários"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animação do Botão de Fogo"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Sites com barreira de segurança"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Controlo Global de Privacidade (CGP)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Ícone da aplicação"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Teclado"; + +/* Settings title for the 'More' section */ +"settings.more" = "Mais de DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Pré-visualizações ao premir prolongadamente"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Privacidade"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sincronização e cópia de segurança"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Tamanho do texto"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Definições"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Sites desprotegidos"; + +/* Settings cell for Version */ +"settings.version" = "Versão"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Pesquisa por voz privada"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Submeter relatório"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Permita o acesso ao microfone nas definições do sistema iOS para que o DuckDuckGo use as funcionalidades de voz."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "É necessário o acesso ao microfone"; diff --git a/DuckDuckGo/ro.lproj/Localizable.strings b/DuckDuckGo/ro.lproj/Localizable.strings index b868b209c3..5f740fee41 100644 --- a/DuckDuckGo/ro.lproj/Localizable.strings +++ b/DuckDuckGo/ro.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internetul poate fi cam terifiant.\n\nNu te îngrijora! Căutarea și navigarea în mod confidențial sunt mai ușoare decât crezi."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Dezactivat"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Bine ai venit la\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo pentru Mac are viteza de care ai nevoie, funcționalitățile de răsfoire pe care ți le dorești și este prevăzută cu cele mai bune caracteristici de bază în privința confidențialității din domeniu."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Alătură-te listei de așteptare și te vom anunța când îți vine rândul."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Ești pe listă!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Preferințe"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Despre DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Despre"; + /* about page */ "settings.about.text" = "DuckDuckGo este o companie independentă înființată în 2008, care oferă confidențialitate pe internet tuturor celor care s-au săturat să fie urmăriți online și își doresc o soluție simplă. Suntem dovada că protecția confidențialității online fără compromisuri este reală.\n\nBrowserul DuckDuckGo oferă funcțiile pe care le aștepți de la browserul predilect, cum ar fi marcajele, filele, parolele și multe altele, plus peste [o duzină de instrumente puternice de protecție a confidențialității](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) care nu sunt oferite implicit de majoritatea browserelor populare. Acest set unic și cuprinzător de măsuri de protecție a confidențialității te ajută să îți protejezi activitățile online, de la căutări la navigare, e-mailuri și multe altele.\n\nMăsurile noastre robuste de protecție a confidențialității funcționează fără a necesita cunoștințe tehnice din partea ta și fără a fi nevoie să faci setări complicate. Tot ce trebuie să faci este să folosești browserul DuckDuckGo pe toate dispozitivele și vei beneficia implicit de confidențialitate.\n\nDar dacă *chiar dorești* să consulți detaliile mai tehnice, poți găsi mai multe informații despre modul în care funcționează instrumentele DuckDuckGo de protecție a confidențialității în [paginile noastre de asistență](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Adaugă aplicația la secțiunea ta fixă"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Adaugă un widget la ecranul de întâmpinare"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Poziția barei de adrese"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Aspect"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Deschide linkuri în aplicațiile asociate"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Dezactivează pentru a preveni deschiderea automată a linkurilor în alte aplicații instalate."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Afișează sugestiile de completare automată"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Blocarea aplicației"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Dacă este setat Touch ID, Face ID sau o parolă de sistem, ți se va solicita să deblochezi aplicația la deschidere."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Șterge automat datele"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Gestionare pop-up-uri pentru module cookie"; + +/* Settings title for the customize section */ +"settings.customize" = "Personalizare"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Setare ca browser implicit"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Protecția comunicațiilor prin e-mail"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blochează tehnologiile de urmărire prin e-mail și ascunde-ți adresa"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Partajează feedback"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animație buton Foc"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Site-uri cu ștergerea activității și istoricului din browser la ieșire"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Pictograma aplicației"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tastatură"; + +/* Settings title for the 'More' section */ +"settings.more" = "Mai multe de la DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Previzualizări prin apăsare lungă"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Confidențialitate"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sincronizare și copiere de rezervă"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Dimensiune text"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Temă"; + +/* Title for the Settings View */ +"settings.title" = "Setări"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Site-uri neprotejate"; + +/* Settings cell for Version */ +"settings.version" = "Versiune"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Căutare vocală privată"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Trimite raportul"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Permite accesul la microfon din setările sistemului de operare iOS, pentru ca DuckDuckGo să folosească funcționalitățile vocale."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Este necesar accesul la microfon"; diff --git a/DuckDuckGo/ru.lproj/Localizable.strings b/DuckDuckGo/ru.lproj/Localizable.strings index 1e00738c85..5dd4826081 100644 --- a/DuckDuckGo/ru.lproj/Localizable.strings +++ b/DuckDuckGo/ru.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Интернет набит трекерами.\n\nНо выход есть! Пользоваться сетью без слежки проще, чем вы думали."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Отключено"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Добро пожаловать в\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "Приложение DuckDuckGo для Mac — это высокая скорость, функциональность и беспрецедентная конфиденциальность."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Записывайтесь в очередь, и мы будем держать вас в курсе."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Вы в списке!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Избранное"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Несколько слов о DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "О нас"; + /* about page */ "settings.about.text" = "DuckDuckGo — независимая компания, которая c 2008 года предоставляет услуги защиты личных данных в интернете. Мы предлагаем простое решение для тех, кому надоело отслеживание онлайн. Своим примером DuckDuckGo показывает, что защита конфиденциальности в Сети не требует компромиссов.\n\nВ универсальном браузере DuckDuckGo вы найдете все те же привычные функции — вкладки, закладки, пароли, — а также более [десятка мощных средств защиты личной информации](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/), которых нет в стандартных пакетах других популярных веб-обозревателей. Наш всесторонний набор инструментов скроет от посторонних глаз всю вашу онлайн-активность, включая поиск, просмотр сайтов и чтение почты.\n\nСервисы DuckDuckGo не требуют особых технических познаний или работы со сложными настройками. Достаточно сменить свой браузер на DuckDuckGo на всех устройствах, и конфиденциальность онлайн станет вашим спутником по умолчанию.\n\nЕсли же вас интересует наша «кухня», вы можете почитать о том, как устроены инструменты защиты DuckDuckGo, на [страницах нашего справочного центра](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Добавьте приложение на док-панель"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Добавьте виджет на домашний экран"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Положение адресной строки"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Внешний вид"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Открывать ссылки в связанных приложениях"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Отключение этой функции не позволит ссылкам автоматически открываться в других приложениях."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Показать предложения автозаполнения"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Блокировка"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Если система защищена технологией Touch ID или Face ID либо кодом доступа, при запуске вам придется разблокировать приложение."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Автоудаление данных"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Управление окнами выбора куки-файлов"; + +/* Settings title for the customize section */ +"settings.customize" = "Собственная настройка"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Сделать браузером по умолчанию"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Защита электронной почты"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Блокировка почтовых трекеров и скрытие адреса"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Оставьте нам отзыв"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Aнимация кнопки «Огонь»"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Огнеупорные сайты"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Глобальный контроль конфиденциальности (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Значок приложения"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Клавиатура"; + +/* Settings title for the 'More' section */ +"settings.more" = "DuckDuckGo также предлагает..."; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Предпросмотр долгим нажатием"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Настройки конфиденциальности"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Синхронизация и резервное копирование"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Размер текста"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Тема"; + +/* Title for the Settings View */ +"settings.title" = "Настройки"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Незащищенные сайты"; + +/* Settings cell for Version */ +"settings.version" = "Версия"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Конфиденциальный голосовой поиск"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Отправить жалобу"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Чтобы пользоваться голосовыми функциями, откройте DuckDuckGo доступ к микрофону в системных настройках iOS."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "Хорошо"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Требуется доступ к микрофону"; diff --git a/DuckDuckGo/sk.lproj/Localizable.strings b/DuckDuckGo/sk.lproj/Localizable.strings index 00c6a67c6e..d57cf782c6 100644 --- a/DuckDuckGo/sk.lproj/Localizable.strings +++ b/DuckDuckGo/sk.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet môže byť dosť nevyspytateľný.\n\nNemajte žiadne obavy! Súkromné vyhľadávanie a prehliadanie je jednoduchšie, ako si myslíte."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Zakázané"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Vitajte v\nprehliadači DuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo pre Mac má rýchlosť, ktorú potrebujete, funkcie prehliadania, ktoré očakávate, a obsahuje naše prvotriedne privacy essentials."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Pridajte sa na zoznam čakateľov a my vás upozorníme, keď na vás príde rad."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Ste na zozname čakateľov!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Obľúbené položky"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "O službe DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "O nás"; + /* about page */ "settings.about.text" = "DuckDuckGo je nezávislá spoločnosť na ochranu súkromia na internete, ktorá bola založená v roku 2008 pre všetkých, ktorých už nebaví sledovanie na internete a chcú jednoduché riešenie. Sme dôkazom, že skutočnú online ochranu súkromia môžete získať bez kompromisov.\n\nPrehliadač DuckDuckGo je vybavený funkciami, ktoré od prehliadača očakávate, ako sú napríklad záložky, karty, heslá a ďalšie funkcie. Navyše obsahuje viac ako [tucet účinných ochranných opatrení na ochranu súkromia](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) sa vo väčšine populárnych prehliadačov štandardne neponúka. Tento jedinečne komplexný súbor ochrany súkromia pomáha chrániť vaše online aktivity od vyhľadávania po prehliadanie, posielanie e-mailov a ďalšie.\n\nNaša ochrana súkromia funguje bez toho, aby ste museli poznať technické detaily alebo riešiť zložité nastavenia. Stačí prepnúť prehliadač na DuckDuckGo vo všetkých zariadeniach a získate predvolené súkromie.\n\nAk však chcete nahliadnuť pod pokrievku, viac informácií o tom, ako funguje ochrana súkromia DuckDuckGo, nájdete na našich [stránkach pomoci](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Pridať aplikáciu do Docku"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Pridať miniaplikáciu na domovskú obrazovku"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Poloha riadku s adresou"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Vzhľad"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Otvárať odkazy v pridružených aplikáciách"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Zakážte a zabráňte tak automatickému otváraniu odkazov v iných nainštalovaných aplikáciách."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Zobraziť návrhy automatického dopĺňania"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Zámok aplikácie"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Ak je nastavená funkcia Touch ID, Face ID alebo systémový prístupový kód, pri otvorení aplikácie sa zobrazí výzva na odomknutie aplikácie."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Automaticky vymazať údaje"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Správa kontextových okien súborov cookie"; + +/* Settings title for the customize section */ +"settings.customize" = "Prispôsobiť"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Nastaviť ako predvolený prehliadač"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Ochrana e-mailu"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Zablokujte nástroje na sledovanie e‑mailov a skryte vašu adresu"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Zdieľať spätnú väzbu"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animácia tlačidla ohňa"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Zabezpečené stránky"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Globálna kontrola súkromia (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Ikona aplikácie"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Klávesnica"; + +/* Settings title for the 'More' section */ +"settings.more" = "Viac od DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Náhľady po dlhodobom stlačení"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Súkromie"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synchronizácia a zálohovanie"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Veľkosť textu"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Motív"; + +/* Title for the Settings View */ +"settings.title" = "Nastavenia"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Nezabezpečené webové stránky"; + +/* Settings cell for Version */ +"settings.version" = "Verzia"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Súkromné hlasové vyhľadávanie"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Odoslať správu"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Ak chcete používať hlasové funkcie, povoľte pre DuckDuckGo prístup k mikrofónu v nastaveniach systému iOS."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Vyžaduje sa prístup k mikrofónu"; diff --git a/DuckDuckGo/sl.lproj/Localizable.strings b/DuckDuckGo/sl.lproj/Localizable.strings index b31c2c91b3..df7e4632ff 100644 --- a/DuckDuckGo/sl.lproj/Localizable.strings +++ b/DuckDuckGo/sl.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet je lahko grozljiv.\n\nNe skrbi! Iskanje in brskanje na zaseben način je lažje, kot si misliš."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Onemogočeno"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Dobrodošli v aplikaciji\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo za računalnike Mac zagotavlja hitrost, ki jo potrebujete, in funkcije brskanja, ki jih pričakujete, ter je opremljen z našimi ključnimi funkcijami zasebnosti, ki so najboljše v tem razredu."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Pridružite se čakalni listi in obvestili vas bomo, ko boste na vrsti."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Na seznamu ste!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Priljubljeni"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "O DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Več o"; + /* about page */ "settings.about.text" = "DuckDuckGo je neodvisno podjetje za zasebnost v internetu, ustanovljeno leta 2008, in je namenjeno vsem, ki so naveličani sledenja v spletu in si želijo preproste rešitve. Dokazujemo, da je v spletu mogoče zagotoviti pravo zaščito zasebnosti brez sklepanja kompromisov.\n\nBrskalnik DuckDuckGo ima funkcije, ki jih pričakujete od priljubljenega brskalnika, kot so zaznamki, zavihki, gesla in drugo, ter več kot [ducat učinkovitih zaščit zasebnosti](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) ki v večini priljubljenih brskalnikov niso na voljo privzeto. Ta edinstveni celovit sklop zaščite zasebnosti pomaga zaščititi vaše spletne dejavnosti, od iskanja do brskanja, pošiljanja e-pošte in še več.\n\nNaša zaščita zasebnosti deluje, ne da bi se vam bilo treba spoznati na tehnične podrobnosti ali se ukvarjati z zapletenimi nastavitvami. Vse, kar morate storiti, je, da brskalnik preklopite na DuckDuckGo v vseh napravah in zasebnost bo privzeta.\n\nČe pa želite pogledati v mehanizem delovanja, lahko več informacij o delovanju zaščite zasebnosti DuckDuckGo najdete na naših [straneh s pomočjo](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Dodajte aplikacijo na svoj domači zaslon"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Dodajte pripomoček na domači zaslon"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Položaj naslovne vrstice"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Izgled"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Odpri povezave v povezanih aplikacijah"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Onemogoči, da preprečiš samodejno odpiranje povezav v drugih nameščenih aplikacijah."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Pokaži predloge za samodokončanje"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Zaklepanje aplikacije"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Če nastavite prepoznavanje z dotikom, prepoznavanje z obrazom ali sistemsko geslo, boste ob odpiranju morali odkleniti aplikacijo."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Samodejno počisti podatke"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Upravljanje pojavnih oken za piškotke"; + +/* Settings title for the customize section */ +"settings.customize" = "Prilagodi"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Nastavite za privzeti brskalnik"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "Zaščita e-pošte"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blokirajte sledilnike e-pošte in skrijte svoj naslov"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Deli povratne informacije"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animacija za gumb ogenj"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Spletne strani s požarno zaščito"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Globalni nadzor zasebnosti (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Ikona aplikacije"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tipkovnica"; + +/* Settings title for the 'More' section */ +"settings.more" = "Več od iskalnika DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Pregledi z dolgim pritiskom"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Zasebnost"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Sinhronizacija in varnostno kopiranje"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Velikost besedila"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Nastavitve"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Nezaščitene strani"; + +/* Settings cell for Version */ +"settings.version" = "Različica"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Zasebno glasovno iskanje"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Pošlji poročilo"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Dovolite dostop do mikrofona v nastavitvah sistema iOS, da boste lahko v brskalniku DuckDuckGo uporabljali glasovne funkcije."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "V REDU"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Potreben je dostop do mikrofona"; diff --git a/DuckDuckGo/sv.lproj/Localizable.strings b/DuckDuckGo/sv.lproj/Localizable.strings index 164f8423cb..809b15e3c3 100644 --- a/DuckDuckGo/sv.lproj/Localizable.strings +++ b/DuckDuckGo/sv.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "Internet kan vara lite läskigt.\n\nOroa dig inte! Att söka och surfa privat är lättare än du tror."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Inaktiverad"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "Välkommen till\nDuckDuckGo!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "DuckDuckGo för Mac har hastigheten du behöver, webbläsarfunktionerna du förväntar dig och våra många förstklassiga integritetsfunktioner."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Skriv upp dig på väntelistan så meddelar vi dig när det är din tur."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Du står på listan!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoriter"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "Om DuckDuckGo"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Om"; + /* about page */ "settings.about.text" = "DuckDuckGo är det oberoende integritetsskyddsföretaget som grundades 2008 för alla som är trötta på att bli spårade online och vill ha en enkel lösning. Vi är beviset på att man kan få riktigt integritetsskydd på nätet utan att kompromissa.\n\nDuckDuckGo-webbläsaren har de funktioner du förväntar dig av en vanlig webbläsare, som bokmärken, flikar, lösenord och mer, plus över [ett dussin kraftfulla integritetsskydd](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) som inte ingår som standard i de flesta populära webbläsare. Den här omfattande uppsättningen av integritetsskydd hjälper dig att skydda dina onlineaktiviteter, från sökning och surfning till e-post och mycket mer.\n\nVårt integritetsskydd fungerar utan att du behöver känna till de tekniska detaljerna eller ta itu med komplicerade inställningar. Det enda du behöver göra är att byta webbläsare till DuckDuckGo på alla dina enheter för att få integritet som standard.\n\nMen om du * verkligen* vill ta en titt under huven hittar du mer information om hur DuckDuckGos integritetsskydd fungerar på våra [hjälpsidor](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/)."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Lägg till app i din Dock"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Lägg till widget på startsidan"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Adressfältsläge"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Utseende"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Öppna länkar i associerade appar"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Inaktivera för att förhindra att länkar automatiskt öppnas i andra installerade appar."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Visa Autoslutför förslag"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "App-lås"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Om Touch ID, Face ID eller ett systemlösenord har konfigurerats ombes du låsa upp appen när du öppnar."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Rensa data automatiskt"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Hantera popup-fönster för cookies"; + +/* Settings title for the customize section */ +"settings.customize" = "Anpassa"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Ställ in som standardwebbläsare"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-postskydd"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "Blockera e-postspårare och dölj din adress"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Berätta vad du tycker"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Animation för brännarknapp"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Brandsäkra webbplatser"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Global Privacy Control (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "App-ikon"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Tangentbord"; + +/* Settings title for the 'More' section */ +"settings.more" = "Mer från DuckDuckGo"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Förhandsvisning vid nedhållning"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Sekretess"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Synkronisering och säkerhetskopiering"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Textstorlek"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Inställningar"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Oskyddade webbplatser"; + +/* Settings cell for Version */ +"settings.version" = "Version"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Privat röstsökning"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Skicka in rapport"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "För att DuckDuckGo ska kunna använda röstfunktionerna måste du tillåta åtkomst till mikrofonen i systeminställningarna för iOS."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "OK"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Mikrofonåtkomst krävs"; diff --git a/DuckDuckGo/tr.lproj/Localizable.strings b/DuckDuckGo/tr.lproj/Localizable.strings index f982ee10b1..1ca6c73d19 100644 --- a/DuckDuckGo/tr.lproj/Localizable.strings +++ b/DuckDuckGo/tr.lproj/Localizable.strings @@ -898,6 +898,9 @@ /* No comment provided by engineer. */ "dax.onboarding.message" = "İnternet bazen ürkütücü olabilir.\n\nEndişelenmeyin! İnternette kimsenin göremeyeceği şekilde arama yapmak ve gezinmek sandığınızdan çok daha kolay."; +/* No comment provided by engineer. */ +"Debug" = "Debug"; + /* GPC Setting state */ "donotsell.disabled" = "Devre Dışı"; @@ -1372,6 +1375,9 @@ /* Please preserve newline character */ "launchscreenWelcomeMessage" = "DuckDuckGo'ya\nHoş Geldiniz!"; +/* No comment provided by engineer. */ +"LOREM IPSUM" = "LOREM IPSUM"; + /* Summary text for the macOS browser waitlist */ "mac-browser.waitlist.summary" = "Mac için DuckDuckGo, ihtiyacınız olan hız ve beklediğiniz tarama özelliklerinin yanı sıra sınıfındaki en iyi gizlilik özelliklerini (Privacy Essentials) sunuyor."; @@ -1489,6 +1495,9 @@ /* Second subtitle for Network Protection join waitlist screen */ "network-protection.waitlist.join.subtitle.2" = "Bekleme listesine katılın. Sıra size geldiğinde sizi bilgilendireceğiz."; +/* Title for Network Protection join waitlist screen */ +"network-protection.waitlist.join.title" = "Network Protection Early Access"; + /* Title for Network Protection joined waitlist screen */ "network-protection.waitlist.joined.title" = "Listedesiniz!"; @@ -1762,9 +1771,108 @@ /* No comment provided by engineer. */ "section.title.favorites" = "Favoriler"; +/* Settings cell for About DDG */ +"settings.about.ddg" = "DuckDuckGo Hakkında"; + +/* Settings section title for About DuckDuckGo */ +"settings.about.section" = "Hakkında"; + /* about page */ "settings.about.text" = "DuckDuckGo, çevrim içi takip edilmeyi hiç istemeyen ve pratik bir çözüm arayan herkese hizmet veren, 2008 yılında kurulmuş bağımsız bir İnternet gizlilik şirketidir. Biz, çevrim içi ortamda ödün vermeden gerçek gizlilik koruması elde edebileceğinizin kanıtıyız.\n\nDuckDuckGo tarayıcı; yer imleri, sekmeler, parolalar ve daha fazlası gibi en çok kullandığınız tarayıcıdan beklediğiniz ama çoğu popüler tarayıcıda varsayılan olarak bulunmayan özelliklerin yanı sıra [sayısı ondan fazla güçlü gizlilik koruması](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/) ile birlikte gelir. Son derece kapsamlı olan bu gizlilik koruma seti; aramadan gezinmeye, e-posta göndermeye ve daha fazlasına kadar çevrim içi etkinliklerinizde koruma sağlamaya yardımcı olur.\n\nGizlilik korumalarımız, teknik ayrıntılar hakkında hiçbir şey bilmenize veya karmaşık ayarlarla uğraşmanıza gerek kalmadan çalışır. Tüm cihazlarınızda tarayıcı olarak DuckDuckGo'yu kullanarak aradığınız gizliliği sağlayabilirsiniz.\n\nAncak ayrıntılara bir göz atmak *istiyorsanız*, DuckDuckGo gizlilik korumalarının nasıl çalıştığı hakkında daha fazla bilgiyi [yardım sayfalarımızda](ddgQuickLink://duckduckgo.com/duckduckgo-help-pages/) bulabilirsiniz."; +/* Settings screen cell text for adding the app to the dock */ +"settings.add.to.dock" = "Uygulamayı Dock'a Ekle"; + +/* Settings screen cell text for add widget to the home screen */ +"settings.add.widget" = "Widget'ı Ana Ekrana Ekle"; + +/* Settings screen cell text for addess bar position */ +"settings.address.bar" = "Adres Çubuğu Konumu"; + +/* Settings screen appearance section title */ +"settings.appearance" = "Görünüm"; + +/* Settings screen cell for opening links in associated apps */ +"settings.associated.apps" = "Bağlantıları İlişkili Uygulamalarda Aç"; + +/* Description for associated apps description */ +"settings.associated.apps.description" = "Bağlantıların yüklenmiş olan diğer uygulamalarda otomatik olarak açılmasını önlemek için devre dışı bırakın."; + +/* Settings screen cell for autocomplete */ +"settings.autocomplete" = "Otomatik Tamamlama Önerileri"; + +/* Settings screen cell text for Application Lock */ +"settings.autolock" = "Uygulama Kilidi"; + +/* Section footer Autolock description */ +"settings.autolock.description" = "Touch ID, Face ID veya sistem parolası belirlenmişse uygulamayı açarken kilidini açmanız istenir."; + +/* Settings screen cell text for Automatically Clearing Data */ +"settings.clear.data" = "Verileri Otomatik Olarak Temizle"; + +/* Settings screen cell text for Cookie popups */ +"settings.cookie.popups" = "Çerez Açılır Pencerelerini Yönetin"; + +/* Settings title for the customize section */ +"settings.customize" = "Özelleştir"; + +/* Settings screen cell text for setting the app as default browser */ +"settings.default.browser" = "Varsayılan Tarayıcı olarak ayarla"; + +/* Settings cell for Email Protection */ +"settings.emailProtection" = "E-posta Koruması"; + +/* Settings cell for Email Protection */ +"settings.emailProtection.description" = "E-posta izleyicileri engelleyin ve adresinizi gizleyin"; + +/* Settings cell for Feedback */ +"settings.feedback" = "Geri Bildirim Paylaş"; + +/* Settings screen cell text for fire button animation */ +"settings.firebutton" = "Yangın Düğmesi Animasyonu"; + +/* Settings screen cell text for Fireproof Sites */ +"settings.fireproof.sites" = "Korumalı Siteler"; + +/* Settings screen cell text for GPC */ +"settings.gpc" = "Küresel Gizlilik Kontrolü (GPC)"; + +/* Settings screen cell text for app icon selection */ +"settings.icon" = "Uygulama Simgesi"; + +/* Settings screen cell for Keyboard */ +"settings.keyboard" = "Klavye"; + +/* Settings title for the 'More' section */ +"settings.more" = "DuckDuckGo'dan daha fazlası"; + +/* Settings screen cell for long press previews */ +"settings.previews" = "Uzun Basma Önizlemeleri"; + +/* Settings title for the privacy section */ +"settings.privacy" = "Gizlilik"; + +/* Settings screen cell text for sync and backup */ +"settings.sync" = "Senkronizasyon ve Yedekleme"; + +/* Settings screen cell text for text size */ +"settings.text.size" = "Metin Boyutu"; + +/* Settings screen cell text for theme */ +"settings.theme" = "Tema"; + +/* Title for the Settings View */ +"settings.title" = "Ayarlar"; + +/* Settings screen cell text for Unprotected Sites */ +"settings.unprotected.sites" = "Korumasız Siteler"; + +/* Settings cell for Version */ +"settings.version" = "Versiyon"; + +/* Settings screen cell for voice search */ +"settings.voice.search" = "Özel Sesli Arama"; + /* Report a Broken Site screen confirmation button */ "siteFeedback.buttonText" = "Rapor Gönder"; @@ -1858,6 +1966,9 @@ /* Message for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.message" = "Ses özelliklerini kullanmak istiyorsanız iOS Sistem Ayarları'ndan DuckDuckGo için Mikrofon erişimine izin verin."; +/* OK button alert warning the user about missing microphone permission */ +"voiceSearch.alert.no-permission.ok" = "Tamam"; + /* Title for alert warning the user about missing microphone permission */ "voiceSearch.alert.no-permission.title" = "Mikrofon Erişimi Gerekli"; From 78b63e423be4245eb36df5f20707a3fd740fc4c7 Mon Sep 17 00:00:00 2001 From: Graeme Arthur Date: Mon, 15 Jan 2024 21:01:43 +0100 Subject: [PATCH 4/9] Release 7.105.0 (#2342) --- Configuration/Version.xcconfig | 2 +- .../AppPrivacyConfigurationDataProvider.swift | 4 +- Core/AppTrackerDataSetProvider.swift | 4 +- Core/ios-config.json | 372 +-- Core/trackerData.json | 2690 ++++++++++------- DuckDuckGo.xcodeproj/project.pbxproj | 42 +- DuckDuckGo/Settings.bundle/Root.plist | 2 +- 7 files changed, 1685 insertions(+), 1431 deletions(-) diff --git a/Configuration/Version.xcconfig b/Configuration/Version.xcconfig index 10014538fa..70dd42904b 100644 --- a/Configuration/Version.xcconfig +++ b/Configuration/Version.xcconfig @@ -1 +1 @@ -MARKETING_VERSION = 7.104.0 +MARKETING_VERSION = 7.105.0 diff --git a/Core/AppPrivacyConfigurationDataProvider.swift b/Core/AppPrivacyConfigurationDataProvider.swift index 499ee7f217..763ffb8717 100644 --- a/Core/AppPrivacyConfigurationDataProvider.swift +++ b/Core/AppPrivacyConfigurationDataProvider.swift @@ -23,8 +23,8 @@ import BrowserServicesKit final public class AppPrivacyConfigurationDataProvider: EmbeddedDataProvider { public struct Constants { - public static let embeddedDataETag = "\"f9c2a920a691b61bf84c10e9e862b1a2\"" - public static let embeddedDataSHA = "d66de7239052da676e17c5f61dd90ffea9dd88e942c4156692e1388003b59f8d" + public static let embeddedDataETag = "\"489ab3f1fc4e889123d6f51a4c0aefec\"" + public static let embeddedDataSHA = "41adeed122f363b3ec2cd3ac189468bbe68b85b44e6a6ab342950561163cc263" } public var embeddedDataEtag: String { diff --git a/Core/AppTrackerDataSetProvider.swift b/Core/AppTrackerDataSetProvider.swift index 8b44a38e52..6b1e7bfc49 100644 --- a/Core/AppTrackerDataSetProvider.swift +++ b/Core/AppTrackerDataSetProvider.swift @@ -23,8 +23,8 @@ import BrowserServicesKit final public class AppTrackerDataSetProvider: EmbeddedDataProvider { public struct Constants { - public static let embeddedDataETag = "\"c9e76dac56186b93f609cc9f1e8c2c0a\"" - public static let embeddedDataSHA = "5735d4459ecdec68b70d75a3effb5c1f8f8bc18af2d05c7fd2ecae4e1d530627" + public static let embeddedDataETag = "\"144361b3801e3d4c33c5aff8d8de3c6b\"" + public static let embeddedDataSHA = "0cf5a43c234d54c3168cc28a65c19b0c5804c15e87aae3e8368d2b2f775a1a8b" } public var embeddedDataEtag: String { diff --git a/Core/ios-config.json b/Core/ios-config.json index 2682418ec0..26dd418b97 100644 --- a/Core/ios-config.json +++ b/Core/ios-config.json @@ -1,6 +1,6 @@ { "readme": "https://github.com/duckduckgo/privacy-configuration", - "version": 1704707649212, + "version": 1705334213687, "features": { "adClickAttribution": { "readme": "https://help.duckduckgo.com/duckduckgo-help-pages/privacy/web-tracking-protections/#3rd-party-tracker-loading-protection", @@ -137,6 +137,9 @@ { "domain": "duden.de" }, + { + "domain": "eleconomista.es" + }, { "domain": "ksta.de" }, @@ -254,6 +257,12 @@ { "domain": "youtube.com" }, + { + "domain": "forbes.com" + }, + { + "domain": "tuc.org.uk" + }, { "domain": "earth.google.com" }, @@ -269,11 +278,12 @@ ], "settings": { "disabledCMPs": [ - "generic-cosmetic" + "generic-cosmetic", + "EZoic" ] }, "state": "enabled", - "hash": "2c63be0009057e4511dc6f6726251a47" + "hash": "0e798c688c53c17c989fa3a41b8c9f65" }, "autofill": { "exceptions": [ @@ -982,6 +992,11 @@ "state": "disabled", "hash": "4390af06f967ef97a827aeab0ac0d1ca" }, + "clientBrandHint": { + "exceptions": [], + "state": "disabled", + "hash": "728493ef7a1488e4781656d3f9db84aa" + }, "contentBlocking": { "state": "enabled", "exceptions": [ @@ -1691,6 +1706,7 @@ "- publicidade -", "reklama", "skip ad", + "skip advertisement", "sponsored news", "continue reading the main story", "this advertisement has not loaded yet, but your article continues below.", @@ -1879,6 +1895,10 @@ { "domain": "bleacherreport.com", "rules": [ + { + "selector": ".br-ad-renderer", + "type": "hide-empty" + }, { "selector": ".br-ad-wrapper", "type": "closest-empty" @@ -2008,6 +2028,19 @@ } ] }, + { + "domain": "corriere.it", + "rules": [ + { + "selector": "[id^='rcsad_']", + "type": "hide-empty" + }, + { + "selector": ".bck-adv", + "type": "hide-empty" + } + ] + }, { "domain": "cyclingtips.com", "rules": [ @@ -2045,6 +2078,13 @@ { "domain": "dallasnews.com", "rules": [ + { + "type": "disable-default" + }, + { + "selector": "[class^='dmnc_features-ads']", + "type": "hide-empty" + }, { "selector": ".adhesiveAdWrapper", "type": "hide-empty" @@ -2416,51 +2456,55 @@ "domain": "google.com", "rules": [ { - "selector": ":is(div:has(> iframe[src*='prid=19026802']))", + "selector": "div:has(> iframe[src*='prid=19026802'])", + "type": "hide" + }, + { + "selector": "div:has(> iframe[src*='prid=19015398'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19015398']))", + "selector": "div:has(> iframe[src*='prid=19026796'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19026796']))", + "selector": "div:has(> iframe[src*='prid=19018053'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19018053']))", + "selector": "div:has(> iframe[src*='prid=19018054'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19018054']))", + "selector": "div:has(> iframe[src*='prid=19016403'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19016403']))", + "selector": "div:has(> iframe[src*='prid=19015972'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19015972']))", + "selector": "div:has(> iframe[src*='prid=19016223'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19016223']))", + "selector": "div:has(> iframe[src*='prid=19015952'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19015952']))", + "selector": "div:has(> iframe[src*='prid=19030391'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19030391']))", + "selector": "div:has(> iframe[src*='prid=19030389'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19030389']))", + "selector": "div:has(> iframe[src*='prid=19030167'])", "type": "hide" }, { - "selector": ":is(div:has(> iframe[src*='prid=19030167']))", + "selector": "div:has(> iframe[src*='prid=19031496'])", "type": "hide" } ] @@ -3750,6 +3794,15 @@ } ] }, + { + "domain": "xatakamovil.com", + "rules": [ + { + "selector": "#stories_container", + "type": "hide-empty" + } + ] + }, { "domain": "xfinity.com", "rules": [ @@ -3808,7 +3861,7 @@ ] }, "state": "enabled", - "hash": "37ba16a450c6df51867a69cd83304b0f" + "hash": "0a8e98f8f0170311825b091ca29cfa7a" }, "exceptionHandler": { "exceptions": [ @@ -4094,6 +4147,9 @@ { "domain": "litebluesso.usps.gov" }, + { + "domain": "tattoogenius.art" + }, { "domain": "earth.google.com" }, @@ -4108,7 +4164,7 @@ } ], "state": "enabled", - "hash": "568a23faa984c8e7eda002294ad8f82f" + "hash": "f1632b92379847c92c95bcffefbc1bd2" }, "googleRejected": { "exceptions": [ @@ -4534,7 +4590,7 @@ "hash": "5e792dd491428702bc0104240fbce0ce" }, "sync": { - "state": "internal", + "state": "enabled", "features": { "level0ShowSync": { "state": "enabled" @@ -4550,7 +4606,8 @@ } }, "exceptions": [], - "hash": "4e4382e6a69f7cc99222fd924168e80f" + "minSupportedVersion": "7.104.0", + "hash": "d7dca6ee484eadebb5133e3f15fd9f41" }, "trackerAllowlist": { "state": "enabled", @@ -4781,38 +4838,9 @@ { "rule": "c.amazon-adsystem.com/aax2/apstag.js", "domains": [ - "4029tv.com", - "cnn.com", - "corriere.it", - "eurogamer.net", - "foxweather.com", - "kcci.com", - "kcra.com", - "ketv.com", - "kmbc.com", - "koat.com", - "koco.com", - "ksbw.com", - "mynbc5.com", - "seattletimes.com", + "applesfera.com", "thesurfersview.com", - "wapt.com", - "wbaltv.com", - "wcvb.com", - "wdsu.com", - "wesh.com", - "wgal.com", - "wildrivers.lostcoastoutpost.com", - "wisn.com", - "wlky.com", - "wlwt.com", - "wmtw.com", - "wmur.com", - "wpbf.com", - "wtae.com", - "wvtm13.com", - "wxii12.com", - "wyff4.com" + "wildrivers.lostcoastoutpost.com" ] }, { @@ -4843,16 +4871,6 @@ } ] }, - "analytics-egain.com": { - "rules": [ - { - "rule": "analytics.analytics-egain.com/onetag/", - "domains": [ - "" - ] - } - ] - }, "appboycdn.com": { "rules": [ { @@ -5006,6 +5024,12 @@ "domains": [ "asics.com" ] + }, + { + "rule": "edge1.certona.net/cd/6490677b/mightyape/scripts/resonance.js", + "domains": [ + "mightyape.co.nz" + ] } ] }, @@ -5217,16 +5241,6 @@ } ] }, - "crisp.chat": { - "rules": [ - { - "rule": "crisp.chat", - "domains": [ - "" - ] - } - ] - }, "criteo.com": { "rules": [ { @@ -5332,6 +5346,7 @@ "rule": "securepubads.g.doubleclick.net/gampad/ads", "domains": [ "ah.nl", + "applesfera.com", "rocketnews24.com" ] }, @@ -5361,7 +5376,9 @@ "rule": "securepubads.g.doubleclick.net/tag/js/gpt.js", "domains": [ "ah.nl", + "applesfera.com", "nytimes.com", + "realmadrid.com", "rocketnews24.com", "uwbadgers.com", "wunderground.com", @@ -5384,6 +5401,13 @@ "wunderground.com" ] }, + { + "rule": "securepubads.g.doubleclick.net/pagead/managed/js/gpt", + "domains": [ + "applesfera.com", + "triblive.com" + ] + }, { "rule": "doubleclick.net", "domains": [ @@ -5470,16 +5494,6 @@ } ] }, - "egain.cloud": { - "rules": [ - { - "rule": "egain.cloud/", - "domains": [ - "" - ] - } - ] - }, "ensighten.com": { "rules": [ { @@ -5579,16 +5593,6 @@ } ] }, - "five9.com": { - "rules": [ - { - "rule": "app.five9.com", - "domains": [ - "" - ] - } - ] - }, "flowplayer.org": { "rules": [ { @@ -5664,12 +5668,6 @@ }, "gemius.pl": { "rules": [ - { - "rule": "gapl.hit.gemius.pl/gplayer.js", - "domains": [ - "tvp.pl" - ] - }, { "rule": "pro.hit.gemius.pl/gstream.js", "domains": [ @@ -5814,16 +5812,11 @@ "games.washingtonpost.com", "metro.co.uk", "nfl.com", + "pandora.com", "paper-io.com", "rawstory.com", "usatoday.com" ] - }, - { - "rule": "storage.googleapis.com/code.snapengage.com/", - "domains": [ - "" - ] } ] }, @@ -5847,6 +5840,9 @@ "daotranslate.com", "drakescans.com", "duden.de", + "freetubetv.net", + "hscprojects.com", + "kits4beats.com", "magicgameworld.com", "rocketnews24.com", "youmath.it", @@ -5886,6 +5882,7 @@ "domains": [ "abril.com.br", "cosmicbook.news", + "thesimsresource.com", "tradersync.com" ] } @@ -6012,6 +6009,7 @@ "thecw46.com", "thecwtc.com", "thenationaldesk.com", + "triblive.com", "turnto10.com", "univisionseattle.com", "upnorthlive.com", @@ -6043,16 +6041,6 @@ } ] }, - "gorgias.chat": { - "rules": [ - { - "rule": "gorgias.chat", - "domains": [ - "" - ] - } - ] - }, "greylabeldelivery.com": { "rules": [ { @@ -6069,16 +6057,6 @@ } ] }, - "groovehq.com": { - "rules": [ - { - "rule": "widget.cluster.groovehq.com/_next/static/chunks/", - "domains": [ - "" - ] - } - ] - }, "gstatic.com": { "rules": [ { @@ -6105,24 +6083,8 @@ } ] }, - "htlbid.com": { - "rules": [ - { - "rule": "htlbid.com/v3/dangerousminds.net/htlbid.js", - "domains": [ - "dangerousminds.net" - ] - } - ] - }, "hubspot.com": { "rules": [ - { - "rule": "api.hubspot.com/livechat-public/v1/message/public", - "domains": [ - "" - ] - }, { "rule": "js.hubspot.com/web-interactives-embed.js", "domains": [ @@ -6358,26 +6320,6 @@ } ] }, - "livechatinc.com": { - "rules": [ - { - "rule": "livechatinc.com", - "domains": [ - "" - ] - } - ] - }, - "liveperson.net": { - "rules": [ - { - "rule": "liveperson.net", - "domains": [ - "" - ] - } - ] - }, "loggly.com": { "rules": [ { @@ -6388,16 +6330,6 @@ } ] }, - "lpsnmedia.net": { - "rules": [ - { - "rule": "lpsnmedia.net", - "domains": [ - "" - ] - } - ] - }, "ltwebstatic.com": { "rules": [ { @@ -6485,6 +6417,16 @@ } ] }, + "mrf.io": { + "rules": [ + { + "rule": "mrf.io", + "domains": [ + "diariodesevilla.es" + ] + } + ] + }, "myfonts.net": { "rules": [ { @@ -6545,16 +6487,6 @@ } ] }, - "nuance.com": { - "rules": [ - { - "rule": "nuance.com", - "domains": [ - "" - ] - } - ] - }, "omappapi.com": { "rules": [ { @@ -6634,7 +6566,8 @@ "domains": [ "abc.net.au", "emol.com", - "oufc.co.uk" + "oufc.co.uk", + "theposh.com" ] } ] @@ -6862,6 +6795,16 @@ } ] }, + "pub.network": { + "rules": [ + { + "rule": "a.pub.network/newser-com/cls.css", + "domains": [ + "newser.com" + ] + } + ] + }, "pubmatic.com": { "rules": [ { @@ -7241,18 +7184,28 @@ }, "trustpilot.com": { "rules": [ + { + "rule": "widget.trustpilot.com/trustboxes/", + "domains": [ + "" + ] + }, + { + "rule": "widget.trustpilot.com/trustbox-data/", + "domains": [ + "" + ] + }, { "rule": "widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js", "domains": [ - "azurestandard.com", - "domesticandgeneral.com", - "www.hotpoint.co.uk" + "" ] }, { "rule": "widget.trustpilot.com/bootstrap/v5/tp.widget.sync.bootstrap.min.js", "domains": [ - "www.hotpoint.co.uk" + "" ] } ] @@ -7497,52 +7450,6 @@ } ] }, - "zopim.com": { - "rules": [ - { - "rule": "zopim.com", - "domains": [ - "" - ] - } - ] - }, - "citi.com": { - "rules": [ - { - "rule": "lp-03.chat.online.citi.com", - "domains": [ - "" - ] - } - ] - }, - "bupa.com.au": { - "rules": [ - { - "rule": "lp-07.customermessaging.bupa.com.au", - "domains": [ - "" - ] - } - ] - }, - "optus.com.au": { - "rules": [ - { - "rule": "lp-07.messaging.optus.com.au", - "domains": [ - "" - ] - }, - { - "rule": "lptag.messaging.optus.com.au", - "domains": [ - "" - ] - } - ] - }, "canadapost-postescanada.ca": { "rules": [ { @@ -7589,7 +7496,7 @@ "domain": "sundancecatalog.com" } ], - "hash": "a5e90f6d573b68977a05183a366ff307" + "hash": "3e64e53a87c3c5a3deb156f036be273e" }, "trackingCookies1p": { "settings": { @@ -7638,6 +7545,9 @@ }, "trackingParameters": { "exceptions": [ + { + "domain": "axs.com" + }, { "domain": "earth.google.com" }, @@ -7684,7 +7594,7 @@ ] }, "state": "enabled", - "hash": "f2437495da4898e8e048643ab38ef372" + "hash": "1df4ca1a649e81401fb5e872212b4dd0" }, "userAgentRotation": { "settings": { diff --git a/Core/trackerData.json b/Core/trackerData.json index c45d8ec8f0..0d4648236e 100644 --- a/Core/trackerData.json +++ b/Core/trackerData.json @@ -1,7 +1,7 @@ { "_builtWith": { - "tracker-radar": "8265857a1597afd1f526c5bcf722a92da57631bfeb37b2dc236d86f7e24046ba-4013b4e91930c643394cb31c6c745356f133b04f", - "tracker-surrogates": "326805e7ed18b0bd2e176fc3d1095dfab3569995" + "tracker-radar": "56bc133a7354c326d8afcb10b905e6cf865390022e9f2fc69045315332db9afd-4013b4e91930c643394cb31c6c745356f133b04f", + "tracker-surrogates": "ba0d8cefe4432723ec75b998241efd2454dff35a" }, "readme": "https://github.com/duckduckgo/tracker-blocklists", "trackers": { @@ -451,7 +451,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -462,7 +462,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -508,7 +508,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -2396,7 +2396,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -2407,7 +2407,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -2451,7 +2451,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -2462,7 +2462,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -2485,31 +2485,12 @@ "default": "block", "rules": [ { - "rule": "amazon-adsystem\\.com/aax2/amzn_ads\\.js", - "surrogate": "amzn_ads.js" + "rule": "amazon-adsystem\\.com/aax2/apstag\\.js", + "surrogate": "amzn_apstag.js" }, { - "rule": "c\\.amazon-adsystem\\.com/aax2/apstag\\.js", - "exceptions": { - "domains": [ - "aetv.com", - "aternos.org", - "cnn.com", - "foxbusiness.com", - "foxnews.com", - "fyi.tv", - "gamingbible.co.uk", - "gamingbible.com", - "history.com", - "ladbible.com", - "mylifetime.com", - "sportbible.com", - "sueddeutsche.de", - "tyla.com", - "unilad.co.uk", - "unilad.com" - ] - } + "rule": "amazon-adsystem\\.com/aax2/amzn_ads\\.js", + "surrogate": "amzn_ads.js" } ] }, @@ -2596,7 +2577,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -2683,15 +2664,10 @@ "prevalence": 0.000402, "fingerprinting": 2, "cookies": 0.000327, - "categories": [], - "default": "ignore", - "rules": [ - { - "rule": "analytics-egain\\.com/onetag/", - "fingerprinting": 1, - "cookies": 0.0000272 - } - ] + "categories": [ + "Support Chat Widget" + ], + "default": "ignore" }, "andbeyond.media": { "domain": "andbeyond.media", @@ -2735,7 +2711,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -2746,7 +2722,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3065,7 +3041,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3192,7 +3168,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3316,7 +3292,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3700,7 +3676,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3711,7 +3687,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3722,7 +3698,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3733,7 +3709,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3799,7 +3775,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3851,7 +3827,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3862,7 +3838,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -3999,7 +3975,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -4350,7 +4326,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -4385,7 +4361,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -4459,7 +4435,9 @@ "prevalence": 0.000844, "fingerprinting": 2, "cookies": 0.000824, - "categories": [], + "categories": [ + "Support Chat Widget" + ], "default": "ignore" }, "booking.com": { @@ -4829,7 +4807,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -4840,7 +4818,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5042,7 +5020,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5084,7 +5062,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5107,7 +5085,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5142,7 +5120,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5171,7 +5149,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5459,7 +5437,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5576,7 +5554,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5587,7 +5565,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5598,7 +5576,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5609,7 +5587,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5646,7 +5624,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -5701,7 +5679,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -6237,7 +6215,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -6278,11 +6256,6 @@ ], "default": "ignore", "rules": [ - { - "rule": "commondatastorage\\.googleapis\\.com\\/code\\.snapengage\\.com\\/js\\/df891b2a-d7be-4ab9-aa46-ccf94e2b6490\\.js", - "fingerprinting": 3, - "cookies": 0.0000136 - }, { "rule": "commondatastorage\\.googleapis\\.com\\/volusionchat\\/js\\/6ce22fbe-d22e-4d1c-b6bf-0c1eb553c41d\\.js", "fingerprinting": 3, @@ -6396,7 +6369,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -6712,7 +6685,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -6723,7 +6696,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -6789,20 +6762,10 @@ "prevalence": 0.000735, "fingerprinting": 2, "cookies": 0.000653, - "categories": [], - "default": "ignore", - "rules": [ - { - "rule": "crisp\\.chat\\/l\\.js", - "fingerprinting": 2, - "cookies": 0 - }, - { - "rule": "crisp\\.chat\\/static\\/javascripts\\/client\\.js", - "fingerprinting": 2, - "cookies": 0.000374 - } - ] + "categories": [ + "Support Chat Widget" + ], + "default": "ignore" }, "criteo.com": { "domain": "criteo.com", @@ -6839,7 +6802,13 @@ "Advertising", "Analytics" ], - "default": "block" + "default": "block", + "rules": [ + { + "rule": "criteo\\.net/js/ld/publishertag\\.js", + "surrogate": "criteo.js" + } + ] }, "crowdedmass.com": { "domain": "crowdedmass.com", @@ -6847,7 +6816,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7043,7 +7012,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7079,7 +7048,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7090,7 +7059,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7101,7 +7070,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7684,7 +7653,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7695,7 +7664,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7706,7 +7675,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7787,7 +7756,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7910,7 +7879,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7921,7 +7890,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -7999,7 +7968,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -8010,7 +7979,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -8125,7 +8094,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -8276,7 +8245,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -8287,7 +8256,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -8655,45 +8624,10 @@ "prevalence": 0.000354, "fingerprinting": 2, "cookies": 0.000347, - "categories": [], - "default": "ignore", - "rules": [ - { - "rule": "egain\\.cloud\\/system\\/templates\\/chat\\/egain-chat\\.js", - "fingerprinting": 1, - "cookies": 0.000129 - }, - { - "rule": "egain\\.cloud\\/system\\/Offers\\.egain", - "fingerprinting": 1, - "cookies": 0.000102 - }, - { - "rule": "egain\\.cloud\\/system\\/templates\\/chat\\/egain-docked-chat\\.js", - "fingerprinting": 1, - "cookies": 0.000123 - }, - { - "rule": "egain\\.cloud\\/system\\/cb\\/admin\\/js\\/allow_cobrowse\\.js", - "fingerprinting": 1, - "cookies": 0.0000885 - }, - { - "rule": "egain\\.cloud\\/system\\/cb\\/cs\\/checkSession\\.html", - "fingerprinting": 1, - "cookies": 0.0000613 - }, - { - "rule": "egain\\.cloud\\/system\\/web\\/view\\/proactivesales\\/templates\\/egofrrulesengine\\.js", - "fingerprinting": 1, - "cookies": 0.0000204 - }, - { - "rule": "egain\\.cloud\\/system\\/templates\\/chat\\/core\\/common\\/libs\\/21\\.0\\.0\\/external-libs\\.min\\.js", - "fingerprinting": 2, - "cookies": 0 - } - ] + "categories": [ + "Support Chat Widget" + ], + "default": "ignore" }, "elfsight.com": { "domain": "elfsight.com", @@ -8813,7 +8747,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -8824,7 +8758,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -8865,7 +8799,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -9281,7 +9215,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -9886,7 +9820,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -9897,7 +9831,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -9908,7 +9842,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -9948,7 +9882,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -9990,7 +9924,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10033,30 +9967,10 @@ "prevalence": 0.000504, "fingerprinting": 1, "cookies": 0.000497, - "categories": [], - "default": "ignore", - "rules": [ - { - "rule": "five9\\.com\\/ps-live-chat\\/static\\/js\\/main\\.6c12f8c2\\.js", - "fingerprinting": 2, - "cookies": 0 - }, - { - "rule": "five9\\.com\\/consoles\\/SocialWidget\\/five9-social-widget\\.min\\.js", - "fingerprinting": 1, - "cookies": 0.000231 - }, - { - "rule": "five9\\.com\\/five9_clients\\/consoles_latest\\/SocialWidget\\/five9-social-widget\\.min\\.js", - "fingerprinting": 1, - "cookies": 0.000238 - }, - { - "rule": "five9\\.com\\/consoles\\/ProactiveChat\\/javascripts\\/five9proactivechat\\.js", - "fingerprinting": 1, - "cookies": 0.0000204 - } - ] + "categories": [ + "Support Chat Widget" + ], + "default": "ignore" }, "fixedfold.com": { "domain": "fixedfold.com", @@ -10064,7 +9978,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10132,7 +10046,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10143,7 +10057,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10191,7 +10105,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10317,7 +10231,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10477,7 +10391,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10488,7 +10402,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10499,7 +10413,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10526,7 +10440,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10576,7 +10490,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10623,7 +10537,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -10695,7 +10609,13 @@ "Advertising", "Audience Measurement" ], - "default": "block" + "default": "block", + "rules": [ + { + "rule": "gemius\\.pl/gplayer\\.js", + "surrogate": "noop.js" + } + ] }, "genieesspv.jp": { "domain": "genieesspv.jp", @@ -11095,7 +11015,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -11135,7 +11055,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -11619,6 +11539,10 @@ "rule": "googlesyndication\\.com/adsbygoogle\\.js", "surrogate": "adsbygoogle.js" }, + { + "rule": "googlesyndication\\.com/pagead/show_ads\\.js", + "surrogate": "noop.js" + }, { "rule": "pagead2\\.googlesyndication\\.com/pagead/js/adsbygoogle\\.js", "surrogate": "adsbygoogle.js", @@ -11867,7 +11791,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -11881,8 +11805,10 @@ "prevalence": 0.00299, "fingerprinting": 2, "cookies": 0.00206, - "categories": [], - "default": "block" + "categories": [ + "Support Chat Widget" + ], + "default": "ignore" }, "govx.com": { "domain": "govx.com", @@ -11954,7 +11880,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -11965,7 +11891,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -11998,15 +11924,10 @@ "prevalence": 0.0000476, "fingerprinting": 2, "cookies": 0, - "categories": [], - "default": "ignore", - "rules": [ - { - "rule": "groovehq\\.com\\/api\\/shim\\/27299f7da6676b065f217a683a418325", - "fingerprinting": 2, - "cookies": 0 - } - ] + "categories": [ + "Support Chat Widget" + ], + "default": "ignore" }, "grow.me": { "domain": "grow.me", @@ -12192,7 +12113,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12232,7 +12153,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12243,7 +12164,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12254,7 +12175,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12265,7 +12186,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12591,7 +12512,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12602,7 +12523,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12613,7 +12534,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -12737,7 +12658,13 @@ "fingerprinting": 2, "cookies": 0.000708, "categories": [], - "default": "block" + "default": "block", + "rules": [ + { + "rule": "htlbid\\.com/v3/.*/htlbid\\.js", + "surrogate": "noop.js" + } + ] }, "htplayground.com": { "domain": "htplayground.com", @@ -13474,19 +13401,12 @@ "default": "block", "rules": [ { - "rule": "secure-drm\\.imrworldwide\\.com/.*/ggcmb400\\.js", - "exceptions": { - "types": [ - "script" - ] - } + "rule": "imrworldwide\\.com/v60\\.js", + "surrogate": "nielsen.js" }, { - "rule": "imrworldwide\\.com/v60\\.js", + "rule": "secure-drm\\.imrworldwide\\.com/.*/ggcmb400\\.js", "exceptions": { - "domains": [ - "threenow.co.nz" - ], "types": [ "script" ] @@ -14522,7 +14442,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -15207,7 +15127,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -15282,7 +15202,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -15333,7 +15253,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -15903,9 +15823,10 @@ "fingerprinting": 2, "cookies": 0.00448, "categories": [ - "Embedded Content" + "Embedded Content", + "Support Chat Widget" ], - "default": "block" + "default": "ignore" }, "livecom.net": { "domain": "livecom.net", @@ -16008,9 +15929,10 @@ "categories": [ "Ad Motivated Tracking", "Analytics", - "Embedded Content" + "Embedded Content", + "Support Chat Widget" ], - "default": "block" + "default": "ignore" }, "lkqd.net": { "domain": "lkqd.net", @@ -16190,7 +16112,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -16201,7 +16123,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -16219,9 +16141,10 @@ "categories": [ "Ad Motivated Tracking", "Analytics", - "Embedded Content" + "Embedded Content", + "Support Chat Widget" ], - "default": "block" + "default": "ignore" }, "lunchroomlock.com": { "domain": "lunchroomlock.com", @@ -16229,7 +16152,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -16448,7 +16371,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -16757,7 +16680,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -16768,7 +16691,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -16953,7 +16876,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -17002,7 +16925,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -17276,7 +17199,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -17287,7 +17210,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -17850,7 +17773,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -18198,7 +18121,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -18337,7 +18260,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -18696,7 +18619,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -18896,35 +18819,10 @@ "prevalence": 0.000585, "fingerprinting": 2, "cookies": 0.0000953, - "categories": [], - "default": "ignore", - "rules": [ - { - "rule": "nuance\\.com\\/media\\/launch\\/tcFramework_jssdk\\.min\\.js", - "fingerprinting": 2, - "cookies": 0.0000136 - }, - { - "rule": "nuance\\.com\\/media\\/launch\\/tcFramework\\.min\\.js", - "fingerprinting": 2, - "cookies": 0 - }, - { - "rule": "nuance\\.com\\/tagserver\\/postToServer\\.min\\.htm", - "fingerprinting": 1, - "cookies": 0.0000408 - }, - { - "rule": "nuance\\.com\\/media\\/launch\\/site_10004119_default_helper\\.js", - "fingerprinting": 2, - "cookies": 0 - }, - { - "rule": "nuance\\.com\\/media\\/launch\\/tcFramework\\.dev\\.js", - "fingerprinting": 2, - "cookies": 0 - } - ] + "categories": [ + "Support Chat Widget" + ], + "default": "ignore" }, "nutritiousbean.com": { "domain": "nutritiousbean.com", @@ -18932,7 +18830,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -19494,18 +19392,6 @@ "categories": [], "default": "block" }, - "online-metrix.net": { - "domain": "online-metrix.net", - "owner": { - "name": "RELX Group", - "displayName": "RELX Group" - }, - "prevalence": 0.00366, - "fingerprinting": 3, - "cookies": 0.00115, - "categories": [], - "default": "block" - }, "oo-syringe.com": { "domain": "oo-syringe.com", "owner": { @@ -20121,7 +20007,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -20342,7 +20228,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -20353,7 +20239,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -20364,7 +20250,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -20504,7 +20390,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -20991,7 +20877,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21020,7 +20906,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21031,7 +20917,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21042,7 +20928,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21106,7 +20992,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21186,7 +21072,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21234,7 +21120,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21245,7 +21131,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21285,7 +21171,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21296,7 +21182,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21331,7 +21217,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21342,7 +21228,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21475,7 +21361,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -21559,7 +21445,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22030,7 +21916,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22041,7 +21927,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22052,7 +21938,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22122,7 +22008,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22133,7 +22019,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22286,7 +22172,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22297,7 +22183,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22339,7 +22225,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22350,7 +22236,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22361,7 +22247,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22631,7 +22517,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22642,7 +22528,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22703,7 +22589,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22761,7 +22647,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22772,7 +22658,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22872,7 +22758,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22895,7 +22781,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -22906,7 +22792,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23263,7 +23149,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23367,7 +23253,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23415,271 +23301,10 @@ "fingerprinting": 1, "cookies": 0.00626, "categories": [ - "Embedded Content" + "Embedded Content", + "Support Chat Widget" ], - "default": "ignore", - "rules": [ - { - "rule": "salesforceliveagent\\.com/content/g/js/51\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000681, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/45\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000408, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/43\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000681, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/56\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000272, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/55\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000272, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/42\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000817, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/46\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000272, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000272, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/28\\.0/deployment\\.js", - "fingerprinting": 0, - "cookies": 0.0000272, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/47\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.000034, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/39\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000408, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/57\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000272, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/36\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000204, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/29\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000204, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/52\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.000034, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/38\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000204, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/35\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000136, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/37\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000136, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/g/js/49\\.0/deployment\\.js", - "fingerprinting": 1, - "cookies": 0.0000204, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - }, - { - "rule": "salesforceliveagent\\.com/content/images/x\\.png", - "fingerprinting": 0, - "cookies": 0.0000204, - "exceptions": { - "types": [ - "script", - "stylesheet", - "subdocument", - "xmlhttprequest" - ] - } - } - ] + "default": "ignore" }, "salesmanago.pl": { "domain": "salesmanago.pl", @@ -23764,7 +23389,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23839,7 +23464,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23850,7 +23475,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23894,7 +23519,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23905,7 +23530,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23916,7 +23541,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -23927,7 +23552,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24007,7 +23632,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24040,7 +23665,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24091,7 +23716,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24227,7 +23852,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24356,7 +23981,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24367,7 +23992,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24614,7 +24239,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24625,7 +24250,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24636,7 +24261,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24917,7 +24542,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24952,7 +24577,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -24993,7 +24618,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25109,7 +24734,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25120,7 +24745,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25149,7 +24774,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25245,7 +24870,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25302,7 +24927,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25313,7 +24938,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25434,7 +25059,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25591,7 +25216,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25617,7 +25242,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25628,7 +25253,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25691,7 +25316,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25702,7 +25327,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25713,7 +25338,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25944,7 +25569,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25971,7 +25596,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25982,7 +25607,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -25993,7 +25618,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26023,7 +25648,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26034,7 +25659,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26062,7 +25687,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26073,7 +25698,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26105,26 +25730,11 @@ "fingerprinting": 3, "cookies": 0.0000136 }, - { - "rule": "storage\\.googleapis\\.com/code\\.snapengage\\.com/js/", - "fingerprinting": 3, - "cookies": 0.0000136 - }, { "rule": "storage\\.googleapis\\.com\\/aam\\.js", "fingerprinting": 3, "cookies": 0.0000476 }, - { - "rule": "storage\\.googleapis\\.com\\/snapengage-eu\\/js\\/b64e82dd-e939-4602-8d4d-9b0290816670\\.js", - "fingerprinting": 3, - "cookies": 0.0000136 - }, - { - "rule": "storage\\.googleapis\\.com\\/snapengage-eu\\/js\\/a332ec1c-e086-4954-9826-34f75d27cef7\\.js", - "fingerprinting": 3, - "cookies": 0.0000136 - }, { "rule": "storage\\.googleapis\\.com\\/tvg-static\\/static\\/tvg4\\/assets\\/js\\/common\\.0285c093\\.js", "fingerprinting": 3, @@ -26161,7 +25771,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26209,7 +25819,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26220,7 +25830,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26231,7 +25841,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26242,7 +25852,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26253,7 +25863,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26264,7 +25874,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26336,7 +25946,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26347,7 +25957,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26401,7 +26011,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26603,7 +26213,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26911,7 +26521,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26922,7 +26532,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -26933,7 +26543,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -27184,7 +26794,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -27195,7 +26805,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -27613,7 +27223,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -28470,7 +28080,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -28600,7 +28210,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -28611,7 +28221,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -28744,7 +28354,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -28827,7 +28437,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -28838,7 +28448,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -28971,7 +28581,8 @@ "fingerprinting": 1, "cookies": 0.00106, "categories": [ - "Embedded Content" + "Embedded Content", + "Support Chat Widget" ], "default": "ignore" }, @@ -29198,7 +28809,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -29505,7 +29116,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -29516,7 +29127,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -29642,7 +29253,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -29653,7 +29264,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -31395,7 +31006,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -31469,6 +31080,22 @@ "categories": [], "default": "block" }, + "zopim.com": { + "domain": "zopim.com", + "owner": { + "name": "Zendesk, Inc.", + "displayName": "Zendesk", + "privacyPolicy": "https://www.zendesk.com/company/customers-partners/privacy-policy/" + }, + "prevalence": 0.0078, + "fingerprinting": 1, + "cookies": 0.00153, + "categories": [ + "Embedded Content", + "Support Chat Widget" + ], + "default": "ignore" + }, "zprk.io": { "domain": "zprk.io", "owner": { @@ -31684,7 +31311,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32844,7 +32471,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32855,7 +32482,29 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "aboardlevel.com": { + "domain": "aboardlevel.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "absentairport.com": { + "domain": "absentairport.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32866,7 +32515,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32877,7 +32526,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32888,7 +32537,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "accuratecoal.com": { + "domain": "accuratecoal.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32899,7 +32559,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32910,7 +32570,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32921,7 +32581,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32932,7 +32592,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32943,7 +32603,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32954,7 +32614,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32965,7 +32625,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32976,7 +32636,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32987,7 +32647,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -32998,7 +32658,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "alertarithmetic.com": { + "domain": "alertarithmetic.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33009,7 +32680,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33020,7 +32691,29 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "amethystzenith.com": { + "domain": "amethystzenith.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "amuckafternoon.com": { + "domain": "amuckafternoon.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33031,7 +32724,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33042,7 +32735,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33053,7 +32746,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33064,7 +32757,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "arrivegrowth.com": { + "domain": "arrivegrowth.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33075,7 +32779,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33086,7 +32790,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33097,7 +32801,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33108,7 +32812,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33119,7 +32823,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33130,7 +32834,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33141,7 +32845,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33152,7 +32856,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33163,7 +32867,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33174,7 +32878,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33185,7 +32889,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33196,7 +32900,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33207,7 +32911,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33218,7 +32922,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33229,7 +32933,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33240,7 +32944,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33251,7 +32955,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "birthdaybelief.com": { + "domain": "birthdaybelief.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33262,7 +32977,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33273,7 +32988,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "blesspizzas.com": { + "domain": "blesspizzas.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33284,7 +33010,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33295,7 +33021,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33306,7 +33032,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33317,7 +33043,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33328,7 +33054,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33339,7 +33065,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33350,7 +33076,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33361,7 +33087,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33372,7 +33098,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33383,7 +33109,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33394,7 +33120,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33405,7 +33131,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33416,7 +33142,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33427,7 +33153,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "burlywhistle.com": { + "domain": "burlywhistle.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33438,7 +33175,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33449,7 +33186,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33460,7 +33197,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33471,7 +33208,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33482,7 +33219,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33493,7 +33230,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33504,7 +33241,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33515,7 +33252,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33526,7 +33263,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33537,7 +33274,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33548,7 +33285,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "catalogcake.com": { + "domain": "catalogcake.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33559,7 +33307,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33570,7 +33318,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33581,7 +33329,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33592,7 +33340,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33603,7 +33351,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33614,7 +33362,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33625,7 +33373,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33636,7 +33384,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33647,7 +33395,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "changeablecats.com": { + "domain": "changeablecats.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33658,7 +33417,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33669,7 +33428,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33680,7 +33439,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33691,7 +33450,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33702,7 +33461,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33713,7 +33472,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33724,7 +33483,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33735,7 +33494,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33746,7 +33505,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33757,7 +33516,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "colossalcry.com": { + "domain": "colossalcry.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33768,7 +33538,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33779,7 +33549,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33790,7 +33560,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33801,7 +33571,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33812,7 +33582,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33823,7 +33593,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33834,7 +33604,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33845,7 +33615,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33856,7 +33626,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33867,7 +33637,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33878,7 +33648,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33889,7 +33659,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33900,7 +33670,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33911,7 +33681,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33922,7 +33692,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33933,7 +33703,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33944,7 +33714,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33955,7 +33725,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33966,7 +33736,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33977,7 +33747,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "cuddlylunchroom.com": { + "domain": "cuddlylunchroom.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33988,7 +33769,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -33999,7 +33780,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34010,7 +33791,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34021,7 +33802,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34032,7 +33813,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34043,7 +33824,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34054,7 +33835,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34065,7 +33846,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34076,7 +33857,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34087,7 +33868,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34098,7 +33879,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34109,7 +33890,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34120,7 +33901,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34131,7 +33912,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34142,7 +33923,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34153,7 +33934,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34164,7 +33945,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34175,7 +33956,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34186,7 +33967,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34197,7 +33978,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34208,7 +33989,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34219,7 +34000,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34230,7 +34011,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34241,7 +34022,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34252,7 +34033,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34263,7 +34044,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34274,7 +34055,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "eminentbubble.com": { + "domain": "eminentbubble.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34285,7 +34077,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34296,7 +34088,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34307,7 +34099,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34318,7 +34110,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34329,7 +34121,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34340,7 +34132,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34351,7 +34143,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34362,7 +34154,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34373,7 +34165,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "executeknowledge.com": { + "domain": "executeknowledge.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34384,7 +34187,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34395,7 +34198,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34406,7 +34209,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34417,7 +34220,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34428,7 +34231,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34439,7 +34242,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34450,7 +34253,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34461,7 +34264,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34472,7 +34275,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34483,7 +34286,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34494,7 +34297,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34505,7 +34308,40 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "featherstage.com": { + "domain": "featherstage.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "feignedfaucet.com": { + "domain": "feignedfaucet.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "fertilefeeling.com": { + "domain": "fertilefeeling.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34516,7 +34352,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34527,7 +34363,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34538,7 +34374,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34549,7 +34385,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34560,7 +34396,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34571,7 +34407,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34582,7 +34418,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34593,7 +34429,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34604,7 +34440,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34615,7 +34451,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "frequentflesh.com": { + "domain": "frequentflesh.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34626,7 +34473,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34637,7 +34484,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34648,7 +34495,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34659,7 +34506,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34670,7 +34517,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34681,7 +34528,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34692,7 +34539,29 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "generateoffice.com": { + "domain": "generateoffice.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "giantsvessel.com": { + "domain": "giantsvessel.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34703,7 +34572,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34714,7 +34583,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34725,7 +34594,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34736,7 +34605,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34747,7 +34616,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34758,7 +34627,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34769,7 +34638,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34780,7 +34649,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34791,7 +34660,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34802,7 +34671,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34813,7 +34682,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34824,7 +34693,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34835,7 +34704,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34846,7 +34715,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34857,7 +34726,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34868,7 +34737,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34879,7 +34748,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34890,7 +34759,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "handsomelythumb.com": { + "domain": "handsomelythumb.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34901,7 +34781,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34912,7 +34792,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34923,7 +34803,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "haplesshydrant.com": { + "domain": "haplesshydrant.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34934,7 +34825,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34945,7 +34836,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34956,7 +34847,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34967,7 +34858,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34978,7 +34869,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -34989,7 +34880,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35000,7 +34891,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35011,7 +34902,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35022,7 +34913,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35033,7 +34924,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35044,7 +34935,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "humdrumtouch.com": { + "domain": "humdrumtouch.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35055,7 +34957,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35066,7 +34968,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "importantmeat.com": { + "domain": "importantmeat.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35077,7 +34990,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35088,7 +35001,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35099,7 +35012,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "inconclusiveaction.com": { + "domain": "inconclusiveaction.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35110,7 +35034,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35121,7 +35045,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "internalcondition.com": { + "domain": "internalcondition.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35132,7 +35067,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35143,7 +35078,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35154,7 +35089,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35165,7 +35100,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35176,7 +35111,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35187,7 +35122,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35198,7 +35133,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "liftedknowledge.com": { + "domain": "liftedknowledge.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35209,7 +35155,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35220,7 +35166,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35231,7 +35177,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35242,7 +35188,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35253,7 +35199,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35264,7 +35210,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35275,7 +35221,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35286,7 +35232,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35297,7 +35243,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35308,7 +35254,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35319,7 +35265,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35330,7 +35276,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35341,7 +35287,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35352,7 +35298,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35363,7 +35309,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35374,7 +35320,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35385,7 +35331,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35396,7 +35342,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35407,7 +35353,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35418,7 +35364,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35429,7 +35375,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35440,7 +35386,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35451,7 +35397,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "minorcattle.com": { + "domain": "minorcattle.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35462,7 +35419,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35473,7 +35430,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35484,7 +35441,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35495,7 +35452,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35506,7 +35463,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35517,7 +35474,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35528,7 +35485,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "mushywaste.com": { + "domain": "mushywaste.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35539,7 +35507,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35550,7 +35518,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35561,7 +35529,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35572,7 +35540,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35583,7 +35551,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35594,7 +35562,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35605,7 +35573,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35616,7 +35584,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "numberlessring.com": { + "domain": "numberlessring.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35627,7 +35606,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35638,7 +35617,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35649,7 +35628,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "oldfashionedoffer.com": { + "domain": "oldfashionedoffer.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35660,7 +35650,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35671,7 +35661,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "orientedargument.com": { + "domain": "orientedargument.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35682,7 +35683,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35693,7 +35694,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35704,7 +35705,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35715,7 +35716,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35726,7 +35727,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35737,7 +35738,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35748,7 +35749,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35759,7 +35760,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35770,7 +35771,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "placidactivity.com": { + "domain": "placidactivity.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35781,7 +35793,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35792,7 +35804,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35803,7 +35815,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35814,7 +35826,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35825,7 +35837,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35836,7 +35848,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35847,7 +35859,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "possiblepencil.com": { + "domain": "possiblepencil.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35858,7 +35881,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35869,7 +35892,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35880,7 +35903,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35891,7 +35914,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35902,7 +35925,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35913,7 +35936,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35924,7 +35947,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "purposepipe.com": { + "domain": "purposepipe.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35935,7 +35969,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35946,29 +35980,40 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "rabbitbreath.com": { + "domain": "rabbitbreath.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" }, - "rabbitbreath.com": { - "domain": "rabbitbreath.com", + "rabbitrifle.com": { + "domain": "rabbitrifle.com", "owner": { "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" }, - "rabbitrifle.com": { - "domain": "rabbitrifle.com", + "railwaygiraffe.com": { + "domain": "railwaygiraffe.com", "owner": { "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35979,7 +36024,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -35990,7 +36035,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36001,7 +36046,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36012,7 +36057,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36023,7 +36068,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36034,7 +36079,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36045,7 +36090,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36056,7 +36101,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36067,7 +36112,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36078,7 +36123,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "reflectivestatement.com": { + "domain": "reflectivestatement.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36089,7 +36145,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36100,7 +36156,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36111,7 +36167,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36122,7 +36178,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36133,7 +36189,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36144,7 +36200,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36155,7 +36211,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36166,7 +36222,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36177,7 +36233,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36188,7 +36244,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36199,7 +36255,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36210,7 +36266,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36221,7 +36277,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36232,7 +36288,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36243,7 +36299,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36254,7 +36310,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36265,7 +36321,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36276,7 +36332,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36287,7 +36343,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36298,7 +36354,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36309,7 +36365,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36320,7 +36376,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36331,7 +36387,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36342,7 +36398,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36353,7 +36409,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36364,7 +36420,29 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "screechingstocking.com": { + "domain": "screechingstocking.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "scribbleson.com": { + "domain": "scribbleson.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36375,7 +36453,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36386,7 +36464,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36397,7 +36475,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "seemlysuggestion.com": { + "domain": "seemlysuggestion.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36408,7 +36497,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36419,7 +36508,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36430,7 +36519,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36441,7 +36530,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36452,7 +36541,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36463,7 +36552,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36474,7 +36563,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36485,7 +36574,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "sheargovernor.com": { + "domain": "sheargovernor.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36496,7 +36596,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36507,7 +36607,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36518,7 +36618,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36529,7 +36629,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36540,7 +36640,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "sierrakermit.com": { + "domain": "sierrakermit.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36551,7 +36662,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36562,7 +36673,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36573,7 +36684,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "sincerepelican.com": { + "domain": "sincerepelican.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36584,7 +36706,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36595,7 +36717,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36606,7 +36728,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36617,7 +36739,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36628,7 +36750,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36639,7 +36761,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "sneakwind.com": { + "domain": "sneakwind.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36650,7 +36783,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36661,7 +36794,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36672,7 +36805,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36683,7 +36816,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36694,7 +36827,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36705,7 +36838,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36716,7 +36849,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36727,7 +36860,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36738,7 +36871,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36749,7 +36882,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36760,7 +36893,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36771,7 +36904,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36782,7 +36915,40 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "spuriousair.com": { + "domain": "spuriousair.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "spysubstance.com": { + "domain": "spysubstance.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "squalidscrew.com": { + "domain": "squalidscrew.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36793,7 +36959,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36804,7 +36970,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36815,7 +36981,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "statuesqueship.com": { + "domain": "statuesqueship.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36826,7 +37003,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36837,7 +37014,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "steepscale.com": { + "domain": "steepscale.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36848,7 +37036,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36859,7 +37047,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36870,7 +37058,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36881,7 +37069,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36892,7 +37080,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36903,7 +37091,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36914,7 +37102,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36925,7 +37113,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "stormyfold.com": { + "domain": "stormyfold.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36936,7 +37135,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36947,7 +37146,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36958,7 +37157,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36969,7 +37168,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36980,7 +37179,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -36991,7 +37190,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37002,7 +37201,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37013,7 +37212,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37024,7 +37223,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37035,7 +37234,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37046,7 +37245,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37057,7 +37256,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37068,7 +37267,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37079,7 +37278,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37090,7 +37289,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37101,7 +37300,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37112,7 +37311,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37123,7 +37322,29 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "synthesizescarecrow.com": { + "domain": "synthesizescarecrow.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "tackytrains.com": { + "domain": "tackytrains.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37134,7 +37355,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37145,7 +37366,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37156,7 +37377,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37167,7 +37388,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37178,7 +37399,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37189,7 +37410,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37200,7 +37421,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37211,7 +37432,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37222,7 +37443,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37233,7 +37454,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37244,7 +37465,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37255,7 +37476,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37266,7 +37487,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37277,7 +37498,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37288,7 +37509,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37299,7 +37520,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37310,7 +37531,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37321,7 +37542,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37332,7 +37553,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37343,7 +37564,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37354,7 +37575,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37365,7 +37586,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "troubleshade.com": { + "domain": "troubleshade.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37376,7 +37608,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37387,7 +37619,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37398,7 +37630,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "ubiquitoussea.com": { + "domain": "ubiquitoussea.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37409,7 +37652,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37420,7 +37663,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37431,7 +37674,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37442,7 +37685,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37453,7 +37696,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37464,7 +37707,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37475,7 +37718,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37486,7 +37729,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37497,7 +37740,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37508,7 +37751,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "unwieldyimpulse.com": { + "domain": "unwieldyimpulse.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37519,7 +37773,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37530,7 +37784,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37541,7 +37795,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37552,7 +37806,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37563,7 +37817,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37574,7 +37828,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37585,7 +37839,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37596,7 +37850,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37607,7 +37861,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37618,7 +37872,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37629,7 +37883,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37640,7 +37894,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37651,7 +37905,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37662,7 +37916,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37673,7 +37927,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37684,7 +37938,18 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, + "fingerprinting": 1, + "cookies": 0.01, + "default": "block" + }, + "wrongwound.com": { + "domain": "wrongwound.com", + "owner": { + "name": "Leven Labs, Inc. DBA Admiral", + "displayName": "Admiral" + }, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37695,7 +37960,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -37706,7 +37971,7 @@ "name": "Leven Labs, Inc. DBA Admiral", "displayName": "Admiral" }, - "prevalence": 0.0142, + "prevalence": 0.0151, "fingerprinting": 1, "cookies": 0.01, "default": "block" @@ -44576,28 +44841,6 @@ "prevalence": 0.0095, "displayName": "OneTag" }, - "RELX Group": { - "domains": [ - "cell.com", - "elsevier.com", - "elsevier.io", - "elsevierhealth.com", - "em-consulte.com", - "evise.com", - "lexisnexis.com", - "mendeley.com", - "online-metrix.net", - "sciencedirect.com", - "sciencedirectassets.com", - "scopus.com", - "ssrn.com", - "thelancet.com", - "threatmetrix.com", - "vitalchek.com" - ], - "prevalence": 0.21, - "displayName": "RELX Group" - }, "Brightcove, Inc.": { "domains": [ "bcove.video", @@ -47729,11 +47972,14 @@ "domains": [ "4jnzhl0d0.com", "aboardamusement.com", + "aboardlevel.com", + "absentairport.com", "absorbingband.com", "absorbingcorn.com", "abstractedamount.com", "abstractedauthority.com", "acceptableauthority.com", + "accuratecoal.com", "acidpigs.com", "actoramusement.com", "actuallysnake.com", @@ -47745,6 +47991,7 @@ "agreeablearch.com", "agreeabletouch.com", "aheadday.com", + "alertarithmetic.com", "aliasanvil.com", "alikeaddition.com", "aliveachiever.com", @@ -47752,12 +47999,15 @@ "aloofvest.com", "ambiguousafternoon.com", "ambiguousdinosaurs.com", + "amethystzenith.com", + "amuckafternoon.com", "amusedbucket.com", "ancientact.com", "annoyedairport.com", "annoyingacoustics.com", "annoyingclover.com", "aquaticowl.com", + "arrivegrowth.com", "aspiringapples.com", "aspiringattempt.com", "astonishingfood.com", @@ -47786,8 +48036,10 @@ "bestboundary.com", "bikesboard.com", "billowybelief.com", + "birthdaybelief.com", "blackbrake.com", "bleachbubble.com", + "blesspizzas.com", "blushingbeast.com", "blushingbread.com", "boilingcredit.com", @@ -47804,6 +48056,7 @@ "brotherslocket.com", "buildingknife.com", "bulbbait.com", + "burlywhistle.com", "burnbubble.com", "bushesbag.com", "bustlingbath.com", @@ -47821,6 +48074,7 @@ "carpentercomparison.com", "cartkitten.com", "carvecakes.com", + "catalogcake.com", "catschickens.com", "cattlecommittee.com", "causecherry.com", @@ -47831,6 +48085,7 @@ "ceciliavenus.com", "celestialspectra.com", "chalkoil.com", + "changeablecats.com", "chargecracker.com", "charmingplate.com", "cherriescare.com", @@ -47848,6 +48103,7 @@ "coldbalance.com", "colossalclouds.com", "colossalcoat.com", + "colossalcry.com", "combativecar.com", "combcattle.com", "combcompetition.com", @@ -47873,6 +48129,7 @@ "crowdedmass.com", "crystalboulevard.com", "cubchannel.com", + "cuddlylunchroom.com", "cumbersomecarpenter.com", "currentcollar.com", "curvedhoney.com", @@ -47915,6 +48172,7 @@ "dustyhammer.com", "elasticchange.com", "elderlybean.com", + "eminentbubble.com", "encouragingthread.com", "endurablebulb.com", "energeticladybug.com", @@ -47927,6 +48185,7 @@ "eventexistence.com", "exampleshake.com", "excitingtub.com", + "executeknowledge.com", "exhibitsneeze.com", "expansioneggnog.com", "exuberantedge.com", @@ -47944,6 +48203,9 @@ "faultycanvas.com", "fearfulmint.com", "fearlessfaucet.com", + "featherstage.com", + "feignedfaucet.com", + "fertilefeeling.com", "fewjuice.com", "fewkittens.com", "financefear.com", @@ -47962,6 +48224,7 @@ "frailfruit.com", "franticroof.com", "freezingbuilding.com", + "frequentflesh.com", "friendwool.com", "fronttoad.com", "fumblingform.com", @@ -47973,6 +48236,8 @@ "fuzzyerror.com", "gammamaximum.com", "gaudyairplane.com", + "generateoffice.com", + "giantsvessel.com", "giddycoat.com", "giraffepiano.com", "givevacation.com", @@ -48000,9 +48265,11 @@ "hammerhearing.com", "handsomehose.com", "handsomelyhealth.com", + "handsomelythumb.com", "handyfield.com", "handyfireman.com", "handyincrease.com", + "haplesshydrant.com", "haplessland.com", "harborcaption.com", "hatefulrequest.com", @@ -48018,13 +48285,17 @@ "horsenectar.com", "hospitablehall.com", "hospitablehat.com", + "humdrumtouch.com", "hystericalcloth.com", "illinvention.com", + "importantmeat.com", "impossibleexpansion.com", "impulsejewel.com", "incompetentjoke.com", + "inconclusiveaction.com", "inputicicle.com", "inquisitiveice.com", + "internalcondition.com", "internalsink.com", "j93557g.com", "jubilantcanyon.com", @@ -48036,6 +48307,7 @@ "largebrass.com", "laughablelizards.com", "leftliquid.com", + "liftedknowledge.com", "lightenafterthought.com", "livelumber.com", "livelylaugh.com", @@ -48069,6 +48341,7 @@ "mentorsticks.com", "merequartz.com", "mightyspiders.com", + "minorcattle.com", "mixedreading.com", "modularmental.com", "moorshoes.com", @@ -48077,6 +48350,7 @@ "motionlessmeeting.com", "movemeal.com", "mundanenail.com", + "mushywaste.com", "muteknife.com", "naivestatement.com", "nappyattack.com", @@ -48088,12 +48362,15 @@ "nondescriptcrowd.com", "nondescriptnote.com", "nostalgicneed.com", + "numberlessring.com", "nutritiousbean.com", "nuttyorganization.com", "oafishchance.com", "obscenesidewalk.com", + "oldfashionedoffer.com", "operationchicken.com", "optimallimit.com", + "orientedargument.com", "outstandingincome.com", "outstandingsnails.com", "overconfidentfood.com", @@ -48109,6 +48386,7 @@ "passivepolo.com", "peacefullimit.com", "petiteumbrella.com", + "placidactivity.com", "placidperson.com", "planebasin.com", "plantdigestion.com", @@ -48122,6 +48400,7 @@ "politeplanes.com", "politicalporter.com", "possibleboats.com", + "possiblepencil.com", "potatoinvention.com", "powderjourney.com", "powerfulcopper.com", @@ -48137,6 +48416,7 @@ "puffypurpose.com", "pumpedpancake.com", "punyplant.com", + "purposepipe.com", "quietknowledge.com", "quillkick.com", "quirkysugar.com", @@ -48145,6 +48425,7 @@ "rabbitbreath.com", "rabbitrifle.com", "radiateprose.com", + "railwaygiraffe.com", "railwayreason.com", "raintwig.com", "rainyhand.com", @@ -48161,6 +48442,7 @@ "recessrain.com", "reconditerake.com", "reconditerespect.com", + "reflectivestatement.com", "regularplants.com", "regulatesleet.com", "rehabilitatereason.com", @@ -48205,12 +48487,15 @@ "scissorsstatement.com", "scrapesleep.com", "screechingfurniture.com", + "screechingstocking.com", "screechingstove.com", + "scribbleson.com", "scribblestring.com", "seashoresociety.com", "seatsmoke.com", "secondhandfall.com", "secretturtle.com", + "seemlysuggestion.com", "selectivesummer.com", "selfishsnake.com", "separatesort.com", @@ -48224,6 +48509,7 @@ "shallowblade.com", "shamerain.com", "shapecomb.com", + "sheargovernor.com", "shesubscriptions.com", "shirtsidewalk.com", "shiveringspot.com", @@ -48231,9 +48517,11 @@ "shockingship.com", "shrillspoon.com", "sicksmash.com", + "sierrakermit.com", "sillyscrew.com", "simulateswing.com", "sincerebuffalo.com", + "sincerepelican.com", "sinceresubstance.com", "singroot.com", "sinkbooks.com", @@ -48248,6 +48536,7 @@ "smilingswim.com", "smoggysnakes.com", "smoggysongs.com", + "sneakwind.com", "soggysponge.com", "solarislabyrinth.com", "somberscarecrow.com", @@ -48267,15 +48556,20 @@ "spookysleet.com", "spotlessstamp.com", "spottednoise.com", + "spuriousair.com", + "spysubstance.com", + "squalidscrew.com", "stakingbasket.com", "stakingshock.com", "stakingsmile.com", "stalesummer.com", + "statuesqueship.com", "steadfastseat.com", "steadfastsound.com", "steadfastsystem.com", "steadycopper.com", "stealsteel.com", + "steepscale.com", "steepsquirrel.com", "stepplane.com", "stereoproxy.com", @@ -48288,6 +48582,7 @@ "stockingsleet.com", "stomachscience.com", "stopstomach.com", + "stormyfold.com", "straightnest.com", "strangeclocks.com", "strangersponge.com", @@ -48316,6 +48611,8 @@ "swingslip.com", "synonymousrule.com", "synonymoussticks.com", + "synthesizescarecrow.com", + "tackytrains.com", "tangyamount.com", "tangycover.com", "tastelesstrees.com", @@ -48345,10 +48642,12 @@ "tritebadge.com", "tritethunder.com", "troubledtail.com", + "troubleshade.com", "truculentrate.com", "tumbleicicle.com", "typicalairplane.com", "typicalteeth.com", + "ubiquitoussea.com", "ubiquitousyard.com", "ultraoranges.com", "unablehope.com", @@ -48363,6 +48662,7 @@ "untidyrice.com", "unusedstone.com", "unwieldyhealth.com", + "unwieldyimpulse.com", "unwieldyplastic.com", "uselesslumber.com", "vengefulgrass.com", @@ -48385,11 +48685,12 @@ "whispermeeting.com", "wildcommittee.com", "workoperation.com", + "wrongwound.com", "zestycrime.com", "zipperxray.com", "zlp6s.pw" ], - "prevalence": 0.0142, + "prevalence": 0.0151, "displayName": "Admiral" } }, @@ -49110,11 +49411,14 @@ "aamsitecertifier.com": "Alliance for Audited Media", "4jnzhl0d0.com": "Leven Labs, Inc. DBA Admiral", "aboardamusement.com": "Leven Labs, Inc. DBA Admiral", + "aboardlevel.com": "Leven Labs, Inc. DBA Admiral", + "absentairport.com": "Leven Labs, Inc. DBA Admiral", "absorbingband.com": "Leven Labs, Inc. DBA Admiral", "absorbingcorn.com": "Leven Labs, Inc. DBA Admiral", "abstractedamount.com": "Leven Labs, Inc. DBA Admiral", "abstractedauthority.com": "Leven Labs, Inc. DBA Admiral", "acceptableauthority.com": "Leven Labs, Inc. DBA Admiral", + "accuratecoal.com": "Leven Labs, Inc. DBA Admiral", "acidpigs.com": "Leven Labs, Inc. DBA Admiral", "actoramusement.com": "Leven Labs, Inc. DBA Admiral", "actuallysnake.com": "Leven Labs, Inc. DBA Admiral", @@ -49126,6 +49430,7 @@ "agreeablearch.com": "Leven Labs, Inc. DBA Admiral", "agreeabletouch.com": "Leven Labs, Inc. DBA Admiral", "aheadday.com": "Leven Labs, Inc. DBA Admiral", + "alertarithmetic.com": "Leven Labs, Inc. DBA Admiral", "aliasanvil.com": "Leven Labs, Inc. DBA Admiral", "alikeaddition.com": "Leven Labs, Inc. DBA Admiral", "aliveachiever.com": "Leven Labs, Inc. DBA Admiral", @@ -49133,12 +49438,15 @@ "aloofvest.com": "Leven Labs, Inc. DBA Admiral", "ambiguousafternoon.com": "Leven Labs, Inc. DBA Admiral", "ambiguousdinosaurs.com": "Leven Labs, Inc. DBA Admiral", + "amethystzenith.com": "Leven Labs, Inc. DBA Admiral", + "amuckafternoon.com": "Leven Labs, Inc. DBA Admiral", "amusedbucket.com": "Leven Labs, Inc. DBA Admiral", "ancientact.com": "Leven Labs, Inc. DBA Admiral", "annoyedairport.com": "Leven Labs, Inc. DBA Admiral", "annoyingacoustics.com": "Leven Labs, Inc. DBA Admiral", "annoyingclover.com": "Leven Labs, Inc. DBA Admiral", "aquaticowl.com": "Leven Labs, Inc. DBA Admiral", + "arrivegrowth.com": "Leven Labs, Inc. DBA Admiral", "aspiringapples.com": "Leven Labs, Inc. DBA Admiral", "aspiringattempt.com": "Leven Labs, Inc. DBA Admiral", "astonishingfood.com": "Leven Labs, Inc. DBA Admiral", @@ -49167,8 +49475,10 @@ "bestboundary.com": "Leven Labs, Inc. DBA Admiral", "bikesboard.com": "Leven Labs, Inc. DBA Admiral", "billowybelief.com": "Leven Labs, Inc. DBA Admiral", + "birthdaybelief.com": "Leven Labs, Inc. DBA Admiral", "blackbrake.com": "Leven Labs, Inc. DBA Admiral", "bleachbubble.com": "Leven Labs, Inc. DBA Admiral", + "blesspizzas.com": "Leven Labs, Inc. DBA Admiral", "blushingbeast.com": "Leven Labs, Inc. DBA Admiral", "blushingbread.com": "Leven Labs, Inc. DBA Admiral", "boilingcredit.com": "Leven Labs, Inc. DBA Admiral", @@ -49185,6 +49495,7 @@ "brotherslocket.com": "Leven Labs, Inc. DBA Admiral", "buildingknife.com": "Leven Labs, Inc. DBA Admiral", "bulbbait.com": "Leven Labs, Inc. DBA Admiral", + "burlywhistle.com": "Leven Labs, Inc. DBA Admiral", "burnbubble.com": "Leven Labs, Inc. DBA Admiral", "bushesbag.com": "Leven Labs, Inc. DBA Admiral", "bustlingbath.com": "Leven Labs, Inc. DBA Admiral", @@ -49202,6 +49513,7 @@ "carpentercomparison.com": "Leven Labs, Inc. DBA Admiral", "cartkitten.com": "Leven Labs, Inc. DBA Admiral", "carvecakes.com": "Leven Labs, Inc. DBA Admiral", + "catalogcake.com": "Leven Labs, Inc. DBA Admiral", "catschickens.com": "Leven Labs, Inc. DBA Admiral", "cattlecommittee.com": "Leven Labs, Inc. DBA Admiral", "causecherry.com": "Leven Labs, Inc. DBA Admiral", @@ -49212,6 +49524,7 @@ "ceciliavenus.com": "Leven Labs, Inc. DBA Admiral", "celestialspectra.com": "Leven Labs, Inc. DBA Admiral", "chalkoil.com": "Leven Labs, Inc. DBA Admiral", + "changeablecats.com": "Leven Labs, Inc. DBA Admiral", "chargecracker.com": "Leven Labs, Inc. DBA Admiral", "charmingplate.com": "Leven Labs, Inc. DBA Admiral", "cherriescare.com": "Leven Labs, Inc. DBA Admiral", @@ -49229,6 +49542,7 @@ "coldbalance.com": "Leven Labs, Inc. DBA Admiral", "colossalclouds.com": "Leven Labs, Inc. DBA Admiral", "colossalcoat.com": "Leven Labs, Inc. DBA Admiral", + "colossalcry.com": "Leven Labs, Inc. DBA Admiral", "combativecar.com": "Leven Labs, Inc. DBA Admiral", "combcattle.com": "Leven Labs, Inc. DBA Admiral", "combcompetition.com": "Leven Labs, Inc. DBA Admiral", @@ -49254,6 +49568,7 @@ "crowdedmass.com": "Leven Labs, Inc. DBA Admiral", "crystalboulevard.com": "Leven Labs, Inc. DBA Admiral", "cubchannel.com": "Leven Labs, Inc. DBA Admiral", + "cuddlylunchroom.com": "Leven Labs, Inc. DBA Admiral", "cumbersomecarpenter.com": "Leven Labs, Inc. DBA Admiral", "currentcollar.com": "Leven Labs, Inc. DBA Admiral", "curvedhoney.com": "Leven Labs, Inc. DBA Admiral", @@ -49296,6 +49611,7 @@ "dustyhammer.com": "Leven Labs, Inc. DBA Admiral", "elasticchange.com": "Leven Labs, Inc. DBA Admiral", "elderlybean.com": "Leven Labs, Inc. DBA Admiral", + "eminentbubble.com": "Leven Labs, Inc. DBA Admiral", "encouragingthread.com": "Leven Labs, Inc. DBA Admiral", "endurablebulb.com": "Leven Labs, Inc. DBA Admiral", "energeticladybug.com": "Leven Labs, Inc. DBA Admiral", @@ -49308,6 +49624,7 @@ "eventexistence.com": "Leven Labs, Inc. DBA Admiral", "exampleshake.com": "Leven Labs, Inc. DBA Admiral", "excitingtub.com": "Leven Labs, Inc. DBA Admiral", + "executeknowledge.com": "Leven Labs, Inc. DBA Admiral", "exhibitsneeze.com": "Leven Labs, Inc. DBA Admiral", "expansioneggnog.com": "Leven Labs, Inc. DBA Admiral", "exuberantedge.com": "Leven Labs, Inc. DBA Admiral", @@ -49325,6 +49642,9 @@ "faultycanvas.com": "Leven Labs, Inc. DBA Admiral", "fearfulmint.com": "Leven Labs, Inc. DBA Admiral", "fearlessfaucet.com": "Leven Labs, Inc. DBA Admiral", + "featherstage.com": "Leven Labs, Inc. DBA Admiral", + "feignedfaucet.com": "Leven Labs, Inc. DBA Admiral", + "fertilefeeling.com": "Leven Labs, Inc. DBA Admiral", "fewjuice.com": "Leven Labs, Inc. DBA Admiral", "fewkittens.com": "Leven Labs, Inc. DBA Admiral", "financefear.com": "Leven Labs, Inc. DBA Admiral", @@ -49343,6 +49663,7 @@ "frailfruit.com": "Leven Labs, Inc. DBA Admiral", "franticroof.com": "Leven Labs, Inc. DBA Admiral", "freezingbuilding.com": "Leven Labs, Inc. DBA Admiral", + "frequentflesh.com": "Leven Labs, Inc. DBA Admiral", "friendwool.com": "Leven Labs, Inc. DBA Admiral", "fronttoad.com": "Leven Labs, Inc. DBA Admiral", "fumblingform.com": "Leven Labs, Inc. DBA Admiral", @@ -49354,6 +49675,8 @@ "fuzzyerror.com": "Leven Labs, Inc. DBA Admiral", "gammamaximum.com": "Leven Labs, Inc. DBA Admiral", "gaudyairplane.com": "Leven Labs, Inc. DBA Admiral", + "generateoffice.com": "Leven Labs, Inc. DBA Admiral", + "giantsvessel.com": "Leven Labs, Inc. DBA Admiral", "giddycoat.com": "Leven Labs, Inc. DBA Admiral", "giraffepiano.com": "Leven Labs, Inc. DBA Admiral", "givevacation.com": "Leven Labs, Inc. DBA Admiral", @@ -49381,9 +49704,11 @@ "hammerhearing.com": "Leven Labs, Inc. DBA Admiral", "handsomehose.com": "Leven Labs, Inc. DBA Admiral", "handsomelyhealth.com": "Leven Labs, Inc. DBA Admiral", + "handsomelythumb.com": "Leven Labs, Inc. DBA Admiral", "handyfield.com": "Leven Labs, Inc. DBA Admiral", "handyfireman.com": "Leven Labs, Inc. DBA Admiral", "handyincrease.com": "Leven Labs, Inc. DBA Admiral", + "haplesshydrant.com": "Leven Labs, Inc. DBA Admiral", "haplessland.com": "Leven Labs, Inc. DBA Admiral", "harborcaption.com": "Leven Labs, Inc. DBA Admiral", "hatefulrequest.com": "Leven Labs, Inc. DBA Admiral", @@ -49399,13 +49724,17 @@ "horsenectar.com": "Leven Labs, Inc. DBA Admiral", "hospitablehall.com": "Leven Labs, Inc. DBA Admiral", "hospitablehat.com": "Leven Labs, Inc. DBA Admiral", + "humdrumtouch.com": "Leven Labs, Inc. DBA Admiral", "hystericalcloth.com": "Leven Labs, Inc. DBA Admiral", "illinvention.com": "Leven Labs, Inc. DBA Admiral", + "importantmeat.com": "Leven Labs, Inc. DBA Admiral", "impossibleexpansion.com": "Leven Labs, Inc. DBA Admiral", "impulsejewel.com": "Leven Labs, Inc. DBA Admiral", "incompetentjoke.com": "Leven Labs, Inc. DBA Admiral", + "inconclusiveaction.com": "Leven Labs, Inc. DBA Admiral", "inputicicle.com": "Leven Labs, Inc. DBA Admiral", "inquisitiveice.com": "Leven Labs, Inc. DBA Admiral", + "internalcondition.com": "Leven Labs, Inc. DBA Admiral", "internalsink.com": "Leven Labs, Inc. DBA Admiral", "j93557g.com": "Leven Labs, Inc. DBA Admiral", "jubilantcanyon.com": "Leven Labs, Inc. DBA Admiral", @@ -49417,6 +49746,7 @@ "largebrass.com": "Leven Labs, Inc. DBA Admiral", "laughablelizards.com": "Leven Labs, Inc. DBA Admiral", "leftliquid.com": "Leven Labs, Inc. DBA Admiral", + "liftedknowledge.com": "Leven Labs, Inc. DBA Admiral", "lightenafterthought.com": "Leven Labs, Inc. DBA Admiral", "livelumber.com": "Leven Labs, Inc. DBA Admiral", "livelylaugh.com": "Leven Labs, Inc. DBA Admiral", @@ -49450,6 +49780,7 @@ "mentorsticks.com": "Leven Labs, Inc. DBA Admiral", "merequartz.com": "Leven Labs, Inc. DBA Admiral", "mightyspiders.com": "Leven Labs, Inc. DBA Admiral", + "minorcattle.com": "Leven Labs, Inc. DBA Admiral", "mixedreading.com": "Leven Labs, Inc. DBA Admiral", "modularmental.com": "Leven Labs, Inc. DBA Admiral", "moorshoes.com": "Leven Labs, Inc. DBA Admiral", @@ -49458,6 +49789,7 @@ "motionlessmeeting.com": "Leven Labs, Inc. DBA Admiral", "movemeal.com": "Leven Labs, Inc. DBA Admiral", "mundanenail.com": "Leven Labs, Inc. DBA Admiral", + "mushywaste.com": "Leven Labs, Inc. DBA Admiral", "muteknife.com": "Leven Labs, Inc. DBA Admiral", "naivestatement.com": "Leven Labs, Inc. DBA Admiral", "nappyattack.com": "Leven Labs, Inc. DBA Admiral", @@ -49469,12 +49801,15 @@ "nondescriptcrowd.com": "Leven Labs, Inc. DBA Admiral", "nondescriptnote.com": "Leven Labs, Inc. DBA Admiral", "nostalgicneed.com": "Leven Labs, Inc. DBA Admiral", + "numberlessring.com": "Leven Labs, Inc. DBA Admiral", "nutritiousbean.com": "Leven Labs, Inc. DBA Admiral", "nuttyorganization.com": "Leven Labs, Inc. DBA Admiral", "oafishchance.com": "Leven Labs, Inc. DBA Admiral", "obscenesidewalk.com": "Leven Labs, Inc. DBA Admiral", + "oldfashionedoffer.com": "Leven Labs, Inc. DBA Admiral", "operationchicken.com": "Leven Labs, Inc. DBA Admiral", "optimallimit.com": "Leven Labs, Inc. DBA Admiral", + "orientedargument.com": "Leven Labs, Inc. DBA Admiral", "outstandingincome.com": "Leven Labs, Inc. DBA Admiral", "outstandingsnails.com": "Leven Labs, Inc. DBA Admiral", "overconfidentfood.com": "Leven Labs, Inc. DBA Admiral", @@ -49490,6 +49825,7 @@ "passivepolo.com": "Leven Labs, Inc. DBA Admiral", "peacefullimit.com": "Leven Labs, Inc. DBA Admiral", "petiteumbrella.com": "Leven Labs, Inc. DBA Admiral", + "placidactivity.com": "Leven Labs, Inc. DBA Admiral", "placidperson.com": "Leven Labs, Inc. DBA Admiral", "planebasin.com": "Leven Labs, Inc. DBA Admiral", "plantdigestion.com": "Leven Labs, Inc. DBA Admiral", @@ -49503,6 +49839,7 @@ "politeplanes.com": "Leven Labs, Inc. DBA Admiral", "politicalporter.com": "Leven Labs, Inc. DBA Admiral", "possibleboats.com": "Leven Labs, Inc. DBA Admiral", + "possiblepencil.com": "Leven Labs, Inc. DBA Admiral", "potatoinvention.com": "Leven Labs, Inc. DBA Admiral", "powderjourney.com": "Leven Labs, Inc. DBA Admiral", "powerfulcopper.com": "Leven Labs, Inc. DBA Admiral", @@ -49518,6 +49855,7 @@ "puffypurpose.com": "Leven Labs, Inc. DBA Admiral", "pumpedpancake.com": "Leven Labs, Inc. DBA Admiral", "punyplant.com": "Leven Labs, Inc. DBA Admiral", + "purposepipe.com": "Leven Labs, Inc. DBA Admiral", "quietknowledge.com": "Leven Labs, Inc. DBA Admiral", "quillkick.com": "Leven Labs, Inc. DBA Admiral", "quirkysugar.com": "Leven Labs, Inc. DBA Admiral", @@ -49526,6 +49864,7 @@ "rabbitbreath.com": "Leven Labs, Inc. DBA Admiral", "rabbitrifle.com": "Leven Labs, Inc. DBA Admiral", "radiateprose.com": "Leven Labs, Inc. DBA Admiral", + "railwaygiraffe.com": "Leven Labs, Inc. DBA Admiral", "railwayreason.com": "Leven Labs, Inc. DBA Admiral", "raintwig.com": "Leven Labs, Inc. DBA Admiral", "rainyhand.com": "Leven Labs, Inc. DBA Admiral", @@ -49542,6 +49881,7 @@ "recessrain.com": "Leven Labs, Inc. DBA Admiral", "reconditerake.com": "Leven Labs, Inc. DBA Admiral", "reconditerespect.com": "Leven Labs, Inc. DBA Admiral", + "reflectivestatement.com": "Leven Labs, Inc. DBA Admiral", "regularplants.com": "Leven Labs, Inc. DBA Admiral", "regulatesleet.com": "Leven Labs, Inc. DBA Admiral", "rehabilitatereason.com": "Leven Labs, Inc. DBA Admiral", @@ -49586,12 +49926,15 @@ "scissorsstatement.com": "Leven Labs, Inc. DBA Admiral", "scrapesleep.com": "Leven Labs, Inc. DBA Admiral", "screechingfurniture.com": "Leven Labs, Inc. DBA Admiral", + "screechingstocking.com": "Leven Labs, Inc. DBA Admiral", "screechingstove.com": "Leven Labs, Inc. DBA Admiral", + "scribbleson.com": "Leven Labs, Inc. DBA Admiral", "scribblestring.com": "Leven Labs, Inc. DBA Admiral", "seashoresociety.com": "Leven Labs, Inc. DBA Admiral", "seatsmoke.com": "Leven Labs, Inc. DBA Admiral", "secondhandfall.com": "Leven Labs, Inc. DBA Admiral", "secretturtle.com": "Leven Labs, Inc. DBA Admiral", + "seemlysuggestion.com": "Leven Labs, Inc. DBA Admiral", "selectivesummer.com": "Leven Labs, Inc. DBA Admiral", "selfishsnake.com": "Leven Labs, Inc. DBA Admiral", "separatesort.com": "Leven Labs, Inc. DBA Admiral", @@ -49605,6 +49948,7 @@ "shallowblade.com": "Leven Labs, Inc. DBA Admiral", "shamerain.com": "Leven Labs, Inc. DBA Admiral", "shapecomb.com": "Leven Labs, Inc. DBA Admiral", + "sheargovernor.com": "Leven Labs, Inc. DBA Admiral", "shesubscriptions.com": "Leven Labs, Inc. DBA Admiral", "shirtsidewalk.com": "Leven Labs, Inc. DBA Admiral", "shiveringspot.com": "Leven Labs, Inc. DBA Admiral", @@ -49612,9 +49956,11 @@ "shockingship.com": "Leven Labs, Inc. DBA Admiral", "shrillspoon.com": "Leven Labs, Inc. DBA Admiral", "sicksmash.com": "Leven Labs, Inc. DBA Admiral", + "sierrakermit.com": "Leven Labs, Inc. DBA Admiral", "sillyscrew.com": "Leven Labs, Inc. DBA Admiral", "simulateswing.com": "Leven Labs, Inc. DBA Admiral", "sincerebuffalo.com": "Leven Labs, Inc. DBA Admiral", + "sincerepelican.com": "Leven Labs, Inc. DBA Admiral", "sinceresubstance.com": "Leven Labs, Inc. DBA Admiral", "singroot.com": "Leven Labs, Inc. DBA Admiral", "sinkbooks.com": "Leven Labs, Inc. DBA Admiral", @@ -49629,6 +49975,7 @@ "smilingswim.com": "Leven Labs, Inc. DBA Admiral", "smoggysnakes.com": "Leven Labs, Inc. DBA Admiral", "smoggysongs.com": "Leven Labs, Inc. DBA Admiral", + "sneakwind.com": "Leven Labs, Inc. DBA Admiral", "soggysponge.com": "Leven Labs, Inc. DBA Admiral", "solarislabyrinth.com": "Leven Labs, Inc. DBA Admiral", "somberscarecrow.com": "Leven Labs, Inc. DBA Admiral", @@ -49648,15 +49995,20 @@ "spookysleet.com": "Leven Labs, Inc. DBA Admiral", "spotlessstamp.com": "Leven Labs, Inc. DBA Admiral", "spottednoise.com": "Leven Labs, Inc. DBA Admiral", + "spuriousair.com": "Leven Labs, Inc. DBA Admiral", + "spysubstance.com": "Leven Labs, Inc. DBA Admiral", + "squalidscrew.com": "Leven Labs, Inc. DBA Admiral", "stakingbasket.com": "Leven Labs, Inc. DBA Admiral", "stakingshock.com": "Leven Labs, Inc. DBA Admiral", "stakingsmile.com": "Leven Labs, Inc. DBA Admiral", "stalesummer.com": "Leven Labs, Inc. DBA Admiral", + "statuesqueship.com": "Leven Labs, Inc. DBA Admiral", "steadfastseat.com": "Leven Labs, Inc. DBA Admiral", "steadfastsound.com": "Leven Labs, Inc. DBA Admiral", "steadfastsystem.com": "Leven Labs, Inc. DBA Admiral", "steadycopper.com": "Leven Labs, Inc. DBA Admiral", "stealsteel.com": "Leven Labs, Inc. DBA Admiral", + "steepscale.com": "Leven Labs, Inc. DBA Admiral", "steepsquirrel.com": "Leven Labs, Inc. DBA Admiral", "stepplane.com": "Leven Labs, Inc. DBA Admiral", "stereoproxy.com": "Leven Labs, Inc. DBA Admiral", @@ -49669,6 +50021,7 @@ "stockingsleet.com": "Leven Labs, Inc. DBA Admiral", "stomachscience.com": "Leven Labs, Inc. DBA Admiral", "stopstomach.com": "Leven Labs, Inc. DBA Admiral", + "stormyfold.com": "Leven Labs, Inc. DBA Admiral", "straightnest.com": "Leven Labs, Inc. DBA Admiral", "strangeclocks.com": "Leven Labs, Inc. DBA Admiral", "strangersponge.com": "Leven Labs, Inc. DBA Admiral", @@ -49697,6 +50050,8 @@ "swingslip.com": "Leven Labs, Inc. DBA Admiral", "synonymousrule.com": "Leven Labs, Inc. DBA Admiral", "synonymoussticks.com": "Leven Labs, Inc. DBA Admiral", + "synthesizescarecrow.com": "Leven Labs, Inc. DBA Admiral", + "tackytrains.com": "Leven Labs, Inc. DBA Admiral", "tangyamount.com": "Leven Labs, Inc. DBA Admiral", "tangycover.com": "Leven Labs, Inc. DBA Admiral", "tastelesstrees.com": "Leven Labs, Inc. DBA Admiral", @@ -49726,10 +50081,12 @@ "tritebadge.com": "Leven Labs, Inc. DBA Admiral", "tritethunder.com": "Leven Labs, Inc. DBA Admiral", "troubledtail.com": "Leven Labs, Inc. DBA Admiral", + "troubleshade.com": "Leven Labs, Inc. DBA Admiral", "truculentrate.com": "Leven Labs, Inc. DBA Admiral", "tumbleicicle.com": "Leven Labs, Inc. DBA Admiral", "typicalairplane.com": "Leven Labs, Inc. DBA Admiral", "typicalteeth.com": "Leven Labs, Inc. DBA Admiral", + "ubiquitoussea.com": "Leven Labs, Inc. DBA Admiral", "ubiquitousyard.com": "Leven Labs, Inc. DBA Admiral", "ultraoranges.com": "Leven Labs, Inc. DBA Admiral", "unablehope.com": "Leven Labs, Inc. DBA Admiral", @@ -49744,6 +50101,7 @@ "untidyrice.com": "Leven Labs, Inc. DBA Admiral", "unusedstone.com": "Leven Labs, Inc. DBA Admiral", "unwieldyhealth.com": "Leven Labs, Inc. DBA Admiral", + "unwieldyimpulse.com": "Leven Labs, Inc. DBA Admiral", "unwieldyplastic.com": "Leven Labs, Inc. DBA Admiral", "uselesslumber.com": "Leven Labs, Inc. DBA Admiral", "vengefulgrass.com": "Leven Labs, Inc. DBA Admiral", @@ -49766,6 +50124,7 @@ "whispermeeting.com": "Leven Labs, Inc. DBA Admiral", "wildcommittee.com": "Leven Labs, Inc. DBA Admiral", "workoperation.com": "Leven Labs, Inc. DBA Admiral", + "wrongwound.com": "Leven Labs, Inc. DBA Admiral", "zestycrime.com": "Leven Labs, Inc. DBA Admiral", "zipperxray.com": "Leven Labs, Inc. DBA Admiral", "zlp6s.pw": "Leven Labs, Inc. DBA Admiral", @@ -52849,22 +53208,6 @@ "onetag-sys.com": "OneTag Limited", "onetag.com": "OneTag Limited", "onetag.net": "OneTag Limited", - "cell.com": "RELX Group", - "elsevier.com": "RELX Group", - "elsevier.io": "RELX Group", - "elsevierhealth.com": "RELX Group", - "em-consulte.com": "RELX Group", - "evise.com": "RELX Group", - "lexisnexis.com": "RELX Group", - "mendeley.com": "RELX Group", - "online-metrix.net": "RELX Group", - "sciencedirect.com": "RELX Group", - "sciencedirectassets.com": "RELX Group", - "scopus.com": "RELX Group", - "ssrn.com": "RELX Group", - "thelancet.com": "RELX Group", - "threatmetrix.com": "RELX Group", - "vitalchek.com": "RELX Group", "bcove.video": "Brightcove, Inc.", "bcovlive.io": "Brightcove, Inc.", "boltdns.net": "Brightcove, Inc.", @@ -54528,6 +54871,7 @@ "lp-03.chat.online.citi.com": "va.v.liveperson.net", "lp-07.customermessaging.bupa.com.au": "sy.v.liveperson.net", "lp-07.messaging.optus.com.au": "sy.v.liveperson.net", - "lptag.messaging.optus.com.au": "lptag.liveperson.net" + "lptag.messaging.optus.com.au": "lptag.liveperson.net", + "lptag.customermessaging.bupa.com.au": "lptag.liveperson.net" } } \ No newline at end of file diff --git a/DuckDuckGo.xcodeproj/project.pbxproj b/DuckDuckGo.xcodeproj/project.pbxproj index ff0f4dc347..279d11ea5e 100644 --- a/DuckDuckGo.xcodeproj/project.pbxproj +++ b/DuckDuckGo.xcodeproj/project.pbxproj @@ -8135,7 +8135,7 @@ CODE_SIGN_ENTITLEMENTS = PacketTunnelProvider/PacketTunnelProvider.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEVELOPMENT_TEAM = HKE973VLUW; GCC_C_LANGUAGE_STANDARD = gnu11; GENERATE_INFOPLIST_FILE = YES; @@ -8172,7 +8172,7 @@ CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; GCC_C_LANGUAGE_STANDARD = gnu11; @@ -8264,7 +8264,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = ShareExtension/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 14.0; @@ -8292,7 +8292,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; GCC_C_LANGUAGE_STANDARD = gnu11; @@ -8442,7 +8442,7 @@ CODE_SIGN_ENTITLEMENTS = DuckDuckGo/DuckDuckGo.entitlements; CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_ASSET_PATHS = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; @@ -8468,7 +8468,7 @@ CODE_SIGN_ENTITLEMENTS = DuckDuckGo/DuckDuckGo.entitlements; CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; INFOPLIST_FILE = DuckDuckGo/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 14.0; @@ -8533,7 +8533,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEAD_CODE_STRIPPING = NO; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = Widgets/Info.plist; @@ -8568,7 +8568,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEAD_CODE_STRIPPING = NO; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; @@ -8602,7 +8602,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = OpenAction/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 14.0; @@ -8633,7 +8633,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; GCC_C_LANGUAGE_STANDARD = gnu11; @@ -9320,7 +9320,7 @@ CODE_SIGN_ENTITLEMENTS = DuckDuckGo/DuckDuckGoAlpha.entitlements; CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_ASSET_PATHS = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; @@ -9347,7 +9347,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; GCC_C_LANGUAGE_STANDARD = gnu11; @@ -9380,7 +9380,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; GCC_C_LANGUAGE_STANDARD = gnu11; @@ -9418,7 +9418,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEAD_CODE_STRIPPING = NO; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; @@ -9454,7 +9454,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = HKE973VLUW; GCC_C_LANGUAGE_STANDARD = gnu11; @@ -9489,11 +9489,11 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 2; + DYLIB_CURRENT_VERSION = 0; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = Core/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -9667,11 +9667,11 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 2; + DYLIB_CURRENT_VERSION = 0; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = Core/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; @@ -9700,10 +9700,10 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 0; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 2; + DYLIB_CURRENT_VERSION = 0; DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = Core/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; diff --git a/DuckDuckGo/Settings.bundle/Root.plist b/DuckDuckGo/Settings.bundle/Root.plist index 19109669b0..1b62a4befe 100644 --- a/DuckDuckGo/Settings.bundle/Root.plist +++ b/DuckDuckGo/Settings.bundle/Root.plist @@ -6,7 +6,7 @@ DefaultValue - 7.104.0 + 7.105.0 Key version Title From c4af3e72481b848893b90e9778631a20b73fddaa Mon Sep 17 00:00:00 2001 From: Diego Rey Mendez Date: Tue, 16 Jan 2024 10:41:04 +0100 Subject: [PATCH 5/9] Updates BSK (#2317) --- DuckDuckGo.xcodeproj/project.pbxproj | 2 +- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 4 ++-- LocalPackages/DuckUI/Package.swift | 2 +- LocalPackages/SyncUI/Package.swift | 2 +- LocalPackages/Waitlist/Package.swift | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DuckDuckGo.xcodeproj/project.pbxproj b/DuckDuckGo.xcodeproj/project.pbxproj index ff0f4dc347..0e118eb4ee 100644 --- a/DuckDuckGo.xcodeproj/project.pbxproj +++ b/DuckDuckGo.xcodeproj/project.pbxproj @@ -9902,7 +9902,7 @@ repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit"; requirement = { kind = exactVersion; - version = 101.1.0; + version = 101.1.1; }; }; C14882EB27F211A000D59F0C /* XCRemoteSwiftPackageReference "SwiftSoup" */ = { diff --git a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 67fbd40e2b..5be0da872b 100644 --- a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/DuckDuckGo/BrowserServicesKit", "state" : { - "revision" : "851187f38974b87889b21259eb442e95aedffafe", - "version" : "101.1.0" + "revision" : "202dc0540c214e21b89395370177873e090a7633", + "version" : "101.1.1" } }, { diff --git a/LocalPackages/DuckUI/Package.swift b/LocalPackages/DuckUI/Package.swift index d6b4d800c9..ce2a1bd198 100644 --- a/LocalPackages/DuckUI/Package.swift +++ b/LocalPackages/DuckUI/Package.swift @@ -31,7 +31,7 @@ let package = Package( targets: ["DuckUI"]) ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.1"), ], targets: [ .target( diff --git a/LocalPackages/SyncUI/Package.swift b/LocalPackages/SyncUI/Package.swift index 4af81b88b6..fe8c5a054b 100644 --- a/LocalPackages/SyncUI/Package.swift +++ b/LocalPackages/SyncUI/Package.swift @@ -33,7 +33,7 @@ let package = Package( ], dependencies: [ .package(path: "../DuckUI"), - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.1"), .package(url: "https://github.com/duckduckgo/DesignResourcesKit", exact: "2.0.0") ], targets: [ diff --git a/LocalPackages/Waitlist/Package.swift b/LocalPackages/Waitlist/Package.swift index f950e53ec0..1d7d412748 100644 --- a/LocalPackages/Waitlist/Package.swift +++ b/LocalPackages/Waitlist/Package.swift @@ -15,7 +15,7 @@ let package = Package( targets: ["Waitlist", "WaitlistMocks"]) ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.0"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.1"), .package(url: "https://github.com/duckduckgo/DesignResourcesKit", exact: "2.0.0") ], targets: [ From bb6c67b304559a49d62adb544b0eb048ea67a453 Mon Sep 17 00:00:00 2001 From: Lorenzo Mattei Date: Tue, 16 Jan 2024 12:30:45 +0100 Subject: [PATCH 6/9] Fix e2e tests (#2340) --- .github/workflows/end-to-end.yml | 11 +++++++---- .maestro/release_tests/bookmarks.yaml | 4 ++-- .maestro/release_tests/favorites.yaml | 4 ++-- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/end-to-end.yml b/.github/workflows/end-to-end.yml index 2fcfe9b64e..528f9cd58d 100644 --- a/.github/workflows/end-to-end.yml +++ b/.github/workflows/end-to-end.yml @@ -40,34 +40,37 @@ jobs: run: | set -o pipefail && xcodebuild \ -scheme "DuckDuckGo" \ - -destination "platform=iOS Simulator,name=iPhone 14,OS=16.4" \ + -destination "platform=iOS Simulator,name=iPhone 15,OS=17.2" \ -derivedDataPath "DerivedData" \ -skipPackagePluginValidation \ | tee xcodebuild.log - name: Release tests - uses: mobile-dev-inc/action-maestro-cloud@v1.4.1 + uses: mobile-dev-inc/action-maestro-cloud@v1.8.0 with: api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }} app-file: DerivedData/Build/Products/Debug-iphonesimulator/DuckDuckGo.app workspace: .maestro include-tags: release + ios-version: 17 - name: Privacy tests - uses: mobile-dev-inc/action-maestro-cloud@v1.4.1 + uses: mobile-dev-inc/action-maestro-cloud@v1.8.0 with: api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }} app-file: DerivedData/Build/Products/Debug-iphonesimulator/DuckDuckGo.app workspace: .maestro include-tags: privacy + ios-version: 17 - name: Ad Click Detection Flow tests - uses: mobile-dev-inc/action-maestro-cloud@v1.4.1 + uses: mobile-dev-inc/action-maestro-cloud@v1.8.0 with: api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }} app-file: DerivedData/Build/Products/Debug-iphonesimulator/DuckDuckGo.app workspace: .maestro include-tags: adClick + ios-version: 17 - name: Create Asana task when workflow failed if: ${{ failure() }} diff --git a/.maestro/release_tests/bookmarks.yaml b/.maestro/release_tests/bookmarks.yaml index 56a81943e9..4e0822e12d 100644 --- a/.maestro/release_tests/bookmarks.yaml +++ b/.maestro/release_tests/bookmarks.yaml @@ -47,8 +47,8 @@ tags: # Delete bookmark - assertVisible: "Edit" - tapOn: "Edit" -- assertVisible: "Delete Privacy Test Pages - Home" -- tapOn: "Delete Privacy Test Pages - Home" +- assertVisible: "Remove Privacy Test Pages - Home" +- tapOn: "Remove Privacy Test Pages - Home" - assertVisible: text: "Delete" index: 0 diff --git a/.maestro/release_tests/favorites.yaml b/.maestro/release_tests/favorites.yaml index f33ae3bff7..c3d8ae1b28 100644 --- a/.maestro/release_tests/favorites.yaml +++ b/.maestro/release_tests/favorites.yaml @@ -72,8 +72,8 @@ tags: - assertVisible: "Bookmarks" - tapOn: "Bookmarks" - assertVisible: "Privacy Test Pages - Home" -- assertVisible: "Delete Privacy Test Pages - Home" -- tapOn: "Delete Privacy Test Pages - Home" +- assertVisible: "Remove Privacy Test Pages - Home" +- tapOn: "Remove Privacy Test Pages - Home" - assertVisible: text: "Delete" index: 0 From e1467ff22bd84e18c0e2eb34b5d6af9f55d4f557 Mon Sep 17 00:00:00 2001 From: Dominik Kapusta Date: Tue, 16 Jan 2024 13:04:53 +0100 Subject: [PATCH 7/9] Update more workflows to use XL runners (#2345) --- .github/workflows/adhoc.yml | 2 +- .github/workflows/alpha.yml | 2 +- .github/workflows/nightly.yml | 4 ++-- .github/workflows/release.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/adhoc.yml b/.github/workflows/adhoc.yml index 0b78830657..6233aefe1f 100644 --- a/.github/workflows/adhoc.yml +++ b/.github/workflows/adhoc.yml @@ -13,7 +13,7 @@ on: jobs: make-adhoc: - runs-on: macos-13 + runs-on: macos-13-xlarge name: Make ad-hoc build steps: diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 1b7213e6b0..80156b5f3a 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -31,7 +31,7 @@ on: jobs: make-alpha: - runs-on: macos-13 + runs-on: macos-13-xlarge name: Make TestFlight Alpha Build timeout-minutes: 30 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e565805327..dd87372054 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -7,7 +7,7 @@ on: jobs: atb-ui-tests: name: ATB UI Tests - runs-on: macos-13 + runs-on: macos-13-xlarge timeout-minutes: 30 steps: @@ -67,7 +67,7 @@ jobs: fingerprinting-ui-tests: name: Fingerprinting UI Tests - runs-on: macos-13 + runs-on: macos-13-xlarge timeout-minutes: 30 steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eed601f957..dd02518132 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ on: jobs: make-release: if: github.event.action == 0 || github.event.pull_request.merged == true # empty string returns 0; for case when workflow is triggered manually - runs-on: macos-13 + runs-on: macos-13-xlarge name: Make App Store Connect Release steps: From 7c00dccb3f6de894d1939ae21d52889bb0d3d496 Mon Sep 17 00:00:00 2001 From: Brad Slayter Date: Tue, 16 Jan 2024 08:45:39 -0600 Subject: [PATCH 8/9] Better detection of AMP pages (#2284) --- DuckDuckGo.xcodeproj/project.pbxproj | 2 +- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 4 ++-- DuckDuckGo/en.lproj/Localizable.strings | 4 ++-- LocalPackages/DuckUI/Package.swift | 2 +- LocalPackages/SyncUI/Package.swift | 2 +- LocalPackages/Waitlist/Package.swift | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/DuckDuckGo.xcodeproj/project.pbxproj b/DuckDuckGo.xcodeproj/project.pbxproj index f4862b1772..27cfa043c0 100644 --- a/DuckDuckGo.xcodeproj/project.pbxproj +++ b/DuckDuckGo.xcodeproj/project.pbxproj @@ -9902,7 +9902,7 @@ repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit"; requirement = { kind = exactVersion; - version = 101.1.1; + version = 101.1.2; }; }; C14882EB27F211A000D59F0C /* XCRemoteSwiftPackageReference "SwiftSoup" */ = { diff --git a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 5be0da872b..da0247ee22 100644 --- a/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/DuckDuckGo/BrowserServicesKit", "state" : { - "revision" : "202dc0540c214e21b89395370177873e090a7633", - "version" : "101.1.1" + "revision" : "44569e233945c099887266c1d7b8e07b25558a02", + "version" : "101.1.2" } }, { diff --git a/DuckDuckGo/en.lproj/Localizable.strings b/DuckDuckGo/en.lproj/Localizable.strings index 689f758091..b4aaf23976 100644 --- a/DuckDuckGo/en.lproj/Localizable.strings +++ b/DuckDuckGo/en.lproj/Localizable.strings @@ -1855,7 +1855,7 @@ But if you *do* want a peek under the hood, you can find more information about "settings.ppro.ITR.subtitle" = "If your identity is stolen, we'll help restore it"; /* Identity theft restoration cell title for privacy pro */ -"settings.ppro.ITR.title" = "Identity Theft Restioration"; +"settings.ppro.ITR.title" = "Identity Theft Restoration"; /* Learn more button text for privacy pro */ "settings.ppro.learn.more" = "Learn More"; @@ -1867,7 +1867,7 @@ But if you *do* want a peek under the hood, you can find more information about "settings.ppro.subscribe" = "Subscribe to Privacy Pro"; /* VPN cell title for privacy pro */ -"settings.ppro.VPN.title" = "VPN (Virtual Private Network"; +"settings.ppro.VPN.title" = "VPN"; /* Settings screen cell for long press previews */ "settings.previews" = "Long-Press Previews"; diff --git a/LocalPackages/DuckUI/Package.swift b/LocalPackages/DuckUI/Package.swift index ce2a1bd198..bd15696976 100644 --- a/LocalPackages/DuckUI/Package.swift +++ b/LocalPackages/DuckUI/Package.swift @@ -31,7 +31,7 @@ let package = Package( targets: ["DuckUI"]) ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.1"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.2"), ], targets: [ .target( diff --git a/LocalPackages/SyncUI/Package.swift b/LocalPackages/SyncUI/Package.swift index fe8c5a054b..5fc0e855a0 100644 --- a/LocalPackages/SyncUI/Package.swift +++ b/LocalPackages/SyncUI/Package.swift @@ -33,7 +33,7 @@ let package = Package( ], dependencies: [ .package(path: "../DuckUI"), - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.1"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.2"), .package(url: "https://github.com/duckduckgo/DesignResourcesKit", exact: "2.0.0") ], targets: [ diff --git a/LocalPackages/Waitlist/Package.swift b/LocalPackages/Waitlist/Package.swift index 1d7d412748..4f02d33740 100644 --- a/LocalPackages/Waitlist/Package.swift +++ b/LocalPackages/Waitlist/Package.swift @@ -15,7 +15,7 @@ let package = Package( targets: ["Waitlist", "WaitlistMocks"]) ], dependencies: [ - .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.1"), + .package(url: "https://github.com/duckduckgo/BrowserServicesKit", exact: "101.1.2"), .package(url: "https://github.com/duckduckgo/DesignResourcesKit", exact: "2.0.0") ], targets: [ From 06317591d69ea5912057588bc17faab85abc5e52 Mon Sep 17 00:00:00 2001 From: Sabrina Tardio <44158575+SabrinaTardio@users.noreply.github.com> Date: Tue, 16 Jan 2024 16:21:22 +0100 Subject: [PATCH 9/9] Fix Sync E2E tests (#2338) Co-authored-by: Dominik Kapusta --- .github/workflows/end-to-end.yml | 3 ++- .github/workflows/sync-end-to-end.yml | 7 ++++--- .maestro/shared/copy_recovery_code_from_settings.yaml | 4 ++-- .maestro/shared/set_internal_user_from_settings.yaml | 6 ++++-- .maestro/shared/sync_create.yaml | 3 +-- .maestro/shared/sync_verify_unified_favorites.yaml | 2 +- .maestro/sync_tests/04_sync_data.yaml | 6 ++++++ 7 files changed, 20 insertions(+), 11 deletions(-) diff --git a/.github/workflows/end-to-end.yml b/.github/workflows/end-to-end.yml index 528f9cd58d..2f31dc7bf3 100644 --- a/.github/workflows/end-to-end.yml +++ b/.github/workflows/end-to-end.yml @@ -7,7 +7,7 @@ on: jobs: end-to-end-tests: name: End to end Tests - runs-on: macos-13 + runs-on: macos-13-xlarge steps: - name: Check out the code @@ -43,6 +43,7 @@ jobs: -destination "platform=iOS Simulator,name=iPhone 15,OS=17.2" \ -derivedDataPath "DerivedData" \ -skipPackagePluginValidation \ + ONLY_ACTIVE_ARCH=NO \ | tee xcodebuild.log - name: Release tests diff --git a/.github/workflows/sync-end-to-end.yml b/.github/workflows/sync-end-to-end.yml index 025aaae511..78d7e2ad1e 100644 --- a/.github/workflows/sync-end-to-end.yml +++ b/.github/workflows/sync-end-to-end.yml @@ -7,7 +7,7 @@ on: jobs: build-for-sync-end-to-end-tests: name: Build for Sync End To End Tests - runs-on: macos-13 + runs-on: macos-13-xlarge timeout-minutes: 30 steps: @@ -41,9 +41,10 @@ jobs: run: | set -o pipefail && xcodebuild \ -scheme "DuckDuckGo" \ - -destination "platform=iOS Simulator,name=iPhone 14" \ + -destination "platform=iOS Simulator,name=iPhone 15" \ -derivedDataPath "DerivedData" \ -skipPackagePluginValidation \ + ONLY_ACTIVE_ARCH=NO \ | tee xcodebuild.log - name: Store Binary @@ -65,7 +66,7 @@ jobs: sync-end-to-end-tests: name: Sync End To End Tests needs: build-for-sync-end-to-end-tests - runs-on: macos-13 + runs-on: macos-13-xlarge timeout-minutes: 60 strategy: matrix: diff --git a/.maestro/shared/copy_recovery_code_from_settings.yaml b/.maestro/shared/copy_recovery_code_from_settings.yaml index 16ab4cfebf..7f266e68ea 100644 --- a/.maestro/shared/copy_recovery_code_from_settings.yaml +++ b/.maestro/shared/copy_recovery_code_from_settings.yaml @@ -6,8 +6,8 @@ appId: com.duckduckgo.mobile.ios - scroll - scroll - scroll -- assertVisible: Debug Menu -- tapOn: Debug Menu +- assertVisible: All debug options +- tapOn: All debug options - tapOn: Sync Info - tapOn: Paste and Copy Recovery Code - inputText: ${CODE} diff --git a/.maestro/shared/set_internal_user_from_settings.yaml b/.maestro/shared/set_internal_user_from_settings.yaml index 97d6e6c9c4..fefcc20b78 100644 --- a/.maestro/shared/set_internal_user_from_settings.yaml +++ b/.maestro/shared/set_internal_user_from_settings.yaml @@ -4,7 +4,9 @@ appId: com.duckduckgo.mobile.ios - scroll - scroll - scroll -- assertVisible: Debug Menu -- tapOn: Debug Menu +- assertVisible: All debug options +- tapOn: All debug options - tapOn: Internal User State +- tapOn: Settings +- tapOn: Done - tapOn: Settings \ No newline at end of file diff --git a/.maestro/shared/sync_create.yaml b/.maestro/shared/sync_create.yaml index bcb1968ebe..f7be860848 100644 --- a/.maestro/shared/sync_create.yaml +++ b/.maestro/shared/sync_create.yaml @@ -1,12 +1,11 @@ appId: com.duckduckgo.mobile.ios --- -- assertVisible: Sync & Backup - tapOn: Sync & Backup - assertVisible: Sync & Backup - tapOn: Sync and Back Up This Device - assertVisible: You can sync with your other devices later. -- tapOn: Turn on Sync & Backup +- tapOn: Turn On Sync & Back Up - assertVisible: Save Recovery Code - tapOn: Copy Code - tapOn: Next diff --git a/.maestro/shared/sync_verify_unified_favorites.yaml b/.maestro/shared/sync_verify_unified_favorites.yaml index e23b239ac8..843a223a65 100644 --- a/.maestro/shared/sync_verify_unified_favorites.yaml +++ b/.maestro/shared/sync_verify_unified_favorites.yaml @@ -3,7 +3,7 @@ appId: com.duckduckgo.mobile.ios - tapOn: Sync & Backup - scroll -- assertVisible: Unify Favorites +- assertVisible: Unify Favorites Across Devices - tapOn: rightOf: id: "UnifiedFavoritesToggle" diff --git a/.maestro/sync_tests/04_sync_data.yaml b/.maestro/sync_tests/04_sync_data.yaml index 20605a75f8..48f6a617ad 100644 --- a/.maestro/sync_tests/04_sync_data.yaml +++ b/.maestro/sync_tests/04_sync_data.yaml @@ -23,6 +23,12 @@ tags: - tapOn: Close Tabs and Clear Data # Add local login +- runFlow: + when: + visible: + text: "Cancel" + commands: + - tapOn: Cancel - tapOn: Settings - runFlow: file: ../shared/add_login_from_settings.yaml