├── .cron.yml ├── .gitattributes ├── .githooks └── pre-push ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── ---bug-report.md │ ├── ---crash-report.md │ ├── ---feature.md │ ├── ---intermittent-ui-issue.md │ ├── new-issue.md │ └── release_checklist_template.md ├── l10n │ ├── README.md │ ├── linter_config_focus.json │ └── linter_config_ios.json └── workflows │ ├── check-rust-component-dependency.yml │ ├── firefox-ios-autofill-playwrite-tests.yml │ ├── firefox-ios-build-contributor-pr.yml │ ├── firefox-ios-import-strings.yml │ ├── firefox-ios-l10n-linter.yml │ ├── firefox-ios-publish-docc.yml │ ├── firefox-ios-stale.yml │ ├── firefox-ios-sync-acorn-icons.yml │ ├── firefox-ios-ui-tests-previous-os.yml │ ├── firefox-ios-ui-tests.yml │ ├── firefox-ios-update-effective-tld-names-file.yml │ ├── firefox-ios-update-nimbus-experiments.yml │ ├── firefox-ios-update-uri.yml │ ├── firefox-ios-update.yml │ ├── firefox-ios-update_credential_provider_script.yml │ ├── firefox-ios-update_remote_settings_data_script.yml │ ├── focus-ios-import-strings.yml │ ├── focus-ios-l10n-linter.yml │ ├── focus-ios-l10n-locales.yml │ ├── focus-ios-l10n-screenshots.yml │ ├── focus-ios-ui-tests-previous-os.yml │ ├── focus-ios-ui-tests.yml │ ├── focus-ios-update-nimbus-experiments.yml │ ├── glean-probe-scraper.yml │ ├── pr-version-comment.yml │ ├── update-appservices-nightly.yml │ ├── update-bitrise-steps.yml │ └── update_readme_current_tech_stack.yml ├── .gitignore ├── .mergify.yml ├── .periphery.yml ├── .swiftlint.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .taskcluster.yml ├── AUTHORS ├── BrowserKit ├── .gitignore ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── Common.xcscheme │ │ ├── ContentBlockingGenerator.xcscheme │ │ ├── Logger.xcscheme │ │ ├── Shared.xcscheme │ │ ├── SiteImageView.xcscheme │ │ ├── ToolbarKit.xcscheme │ │ └── WebEngine.xcscheme ├── Package.resolved ├── Package.swift ├── README.md ├── Sources │ ├── Common │ │ ├── Accessibility.swift │ │ ├── Constants │ │ │ ├── AppBuildChannel.swift │ │ │ ├── AppConstants.swift │ │ │ ├── BrowserKitInformation.swift │ │ │ ├── EffectiveTLDNames.swift │ │ │ ├── LaunchArguments.swift │ │ │ ├── NotificationConstants.swift │ │ │ └── StandardImageIdentifiers.swift │ │ ├── DependencyInjection │ │ │ ├── AppContainer.swift │ │ │ └── ServiceProvider.swift │ │ ├── Extensions │ │ │ ├── ColorExtension.swift │ │ │ ├── DataExtension.swift │ │ │ ├── DictionaryExtension.swift │ │ │ ├── HexExtension.swift │ │ │ ├── StringExtension.swift │ │ │ ├── UIColorExtensions.swift │ │ │ ├── UIStackViewExtension.swift │ │ │ ├── UIViewExtension.swift │ │ │ ├── URLExtension.swift │ │ │ ├── VerticalAlignmentExtension.swift │ │ │ └── WKScriptMessageExtension.swift │ │ ├── Logger │ │ │ ├── CrashManager.swift │ │ │ ├── DefaultLogger.swift │ │ │ ├── Logger.swift │ │ │ ├── LoggerCategory.swift │ │ │ ├── LoggerFileManager.swift │ │ │ ├── LoggerLevel.swift │ │ │ ├── README.md │ │ │ └── Wrapper │ │ │ │ ├── SentryWrapper.swift │ │ │ │ └── SwiftyBeaverWrapper.swift │ │ ├── Protocols │ │ │ ├── Application.swift │ │ │ ├── DeviceTypeProvider.swift │ │ │ ├── FileManagerProtocol.swift │ │ │ └── ReusableCell.swift │ │ ├── README.md │ │ ├── ReaderMode │ │ │ ├── ReaderModeFontSize.swift │ │ │ ├── ReaderModeFontType.swift │ │ │ ├── ReaderModeState.swift │ │ │ ├── ReaderModeStyle.swift │ │ │ └── ReaderModeTheme.swift │ │ ├── Theming │ │ │ ├── DarkTheme.swift │ │ │ ├── DefaultThemeManager.swift │ │ │ ├── FxColors.swift │ │ │ ├── FxShadow.swift │ │ │ ├── Gradient.swift │ │ │ ├── LightTheme.swift │ │ │ ├── PrivateModeTheme.swift │ │ │ ├── SwiftUITheme.swift │ │ │ ├── Theme.swift │ │ │ ├── ThemeApplicable.swift │ │ │ ├── ThemeColourPalette.swift │ │ │ ├── ThemeManager.swift │ │ │ ├── ThemeType.swift │ │ │ ├── Themeable.swift │ │ │ ├── ThemeableView+Debug.swift │ │ │ └── ThemeableView.swift │ │ ├── Utilities │ │ │ ├── AppInfo.swift │ │ │ ├── Bytes.swift │ │ │ ├── DeviceInfo.swift │ │ │ ├── DispatchGroupInterface.swift │ │ │ ├── DispatchQueueHelper.swift │ │ │ ├── DispatchQueueInterface.swift │ │ │ ├── DispatchSourceInterface.swift │ │ │ ├── DynamicFont.swift │ │ │ ├── DynamicFontHelper.swift │ │ │ ├── FXFontStyles.swift │ │ │ ├── MenuHelper │ │ │ │ ├── MenuHelper.swift │ │ │ │ ├── MenuHelperLoginInterface.swift │ │ │ │ ├── MenuHelperURLBarInterface.swift │ │ │ │ └── MenuHelperWebViewInterface.swift │ │ │ ├── Notifiable.swift │ │ │ ├── NotificationProtocol.swift │ │ │ ├── TextStyling.swift │ │ │ └── UserDefaultsInterface.swift │ │ └── WindowUUID+Extensions.swift │ ├── ComponentLibrary │ │ ├── ActionButton.swift │ │ ├── ActionButtonViewModel.swift │ │ ├── BottomSheet │ │ │ ├── BottomSheetViewController.swift │ │ │ └── BottomSheetViewModel.swift │ │ ├── Buttons │ │ │ ├── CloseButton.swift │ │ │ ├── CloseButtonViewModel.swift │ │ │ ├── LinkButton.swift │ │ │ ├── LinkButtonViewModel.swift │ │ │ ├── PaddedSwitch.swift │ │ │ ├── PaddedSwitchViewModel.swift │ │ │ ├── PrimaryRoundedButton.swift │ │ │ ├── PrimaryRoundedButtonViewModel.swift │ │ │ ├── PrimaryRoundedGlassButton.swift │ │ │ ├── ResizableButton.swift │ │ │ ├── SecondaryRoundedButton.swift │ │ │ ├── SecondaryRoundedButtonViewModel.swift │ │ │ └── ThemedSwitch.swift │ │ ├── CollapsibleCardView.swift │ │ ├── ContextualHintView │ │ │ ├── ContextualHintView.swift │ │ │ └── ContextualHintViewModel.swift │ │ ├── Documentation.docc │ │ │ ├── Building Blocks │ │ │ │ ├── ActionButton.md │ │ │ │ ├── FadeScrollView.md │ │ │ │ └── ResizableButton.md │ │ │ ├── ComponentLibrary.md │ │ │ ├── General Components │ │ │ │ ├── ActionFooterView.md │ │ │ │ ├── BottomSheetViewController.md │ │ │ │ ├── CardView.md │ │ │ │ ├── CloseButton.md │ │ │ │ ├── CollapsibleCardView.md │ │ │ │ ├── ContextualHintView.md │ │ │ │ ├── HeaderView.md │ │ │ │ ├── LinkButton.md │ │ │ │ ├── NavigationHeaderView.md │ │ │ │ ├── PaddedSwitch.md │ │ │ │ ├── PrimaryRoundedButton.md │ │ │ │ ├── SecondaryRoundedButton.md │ │ │ │ └── ShadowCardView.md │ │ │ ├── GettingStarted.md │ │ │ ├── HowToAddNewComponent.md │ │ │ └── Resources │ │ │ │ ├── ActionFooterView.png │ │ │ │ ├── ActionFooterView~dark.png │ │ │ │ ├── BottomSheetView.png │ │ │ │ ├── BottomSheetView~dark.png │ │ │ │ ├── CardView.png │ │ │ │ ├── CardView~dark.png │ │ │ │ ├── CloseButton-dark.png │ │ │ │ ├── CloseButton.png │ │ │ │ ├── CollapsedCardView.png │ │ │ │ ├── CollapsedCardView~dark.png │ │ │ │ ├── ContextualHintView.png │ │ │ │ ├── ContextualHintView~dark.png │ │ │ │ ├── ExpendedCardView.png │ │ │ │ ├── ExpendedCardView~dark.png │ │ │ │ ├── FadeScrollView.png │ │ │ │ ├── FadeScrollView~dark.png │ │ │ │ ├── HeaderView-dark.png │ │ │ │ ├── HeaderView.png │ │ │ │ ├── LinkButton.png │ │ │ │ ├── LinkButton~dark.png │ │ │ │ ├── NavigationHeaderView-dark.png │ │ │ │ ├── NavigationHeaderView.png │ │ │ │ ├── PaddedSwitch.png │ │ │ │ ├── PaddedSwitch~dark.png │ │ │ │ ├── PrimaryButton.png │ │ │ │ ├── PrimaryButton~dark.png │ │ │ │ ├── SecondaryButton.png │ │ │ │ ├── SecondaryButton~dark.png │ │ │ │ ├── ShadowCardView.png │ │ │ │ └── ShadowCardView~dark.png │ │ ├── FadeScrollView.swift │ │ ├── Headers │ │ │ ├── HeaderView.swift │ │ │ └── NavigationHeaderView.swift │ │ ├── ShadowCardView.swift │ │ ├── SwiftUI │ │ │ ├── AttributedLinkText.swift │ │ │ ├── CustomPageControl.swift │ │ │ ├── LinkButtonView.swift │ │ │ ├── LinkInfoModel.swift │ │ │ ├── PagingCarousel.swift │ │ │ ├── PortraitOnlyHostingController.swift │ │ │ ├── PrimaryButtonStyle.swift │ │ │ ├── SecondaryButtonStyle.swift │ │ │ └── ViewExtensions.swift │ │ └── TextField.swift │ ├── ContentBlockingGenerator │ │ ├── ActionType.swift │ │ ├── ContentBlockerFileManager.swift │ │ ├── ContentBlockerGenerator.swift │ │ ├── ContentBlockerParser.swift │ │ ├── Entity.swift │ │ ├── FileCategory.swift │ │ ├── JsonHelper.swift │ │ └── README.md │ ├── ExecutableContentBlockingGenerator │ │ └── MainContentBlockerGenerator.swift │ ├── JWTKit │ │ ├── JWTAlgorithm.swift │ │ ├── JWTAlgorithmStrategy.swift │ │ ├── JWTEncoder.swift │ │ ├── JWTError.swift │ │ ├── JWTHS256Algorithm.swift │ │ ├── JWTHeader.swift │ │ └── JWTNoneAlgorithm.swift │ ├── MenuKit │ │ ├── HeaderBanner.swift │ │ ├── MainMenuHelper.swift │ │ ├── MenuAccountCell.swift │ │ ├── MenuCell.swift │ │ ├── MenuElement.swift │ │ ├── MenuInfoCell.swift │ │ ├── MenuMainView.swift │ │ ├── MenuPaddedLabel.swift │ │ ├── MenuSection.swift │ │ ├── MenuSiteProtectionsHeader.swift │ │ ├── MenuSquareCell.swift │ │ ├── MenuSquaresViewContentCell.swift │ │ ├── MenuTableView.swift │ │ └── MenuTableViewHelper.swift │ ├── OnboardingKit │ │ ├── Media.xcassets │ │ │ ├── Contents.json │ │ │ ├── Theme │ │ │ │ ├── Contents.json │ │ │ │ ├── onboardingThemeDark.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingThemeDark 1.pdf │ │ │ │ │ └── onboardingThemeDark.pdf │ │ │ │ ├── onboardingThemeDarkSelected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingThemeDarkSelected 1.pdf │ │ │ │ │ └── onboardingThemeDarkSelected.pdf │ │ │ │ ├── onboardingThemeLight.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingThemeLight 1.pdf │ │ │ │ │ └── onboardingThemeLight.pdf │ │ │ │ ├── onboardingThemeLightSelected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingThemeLightSelected 1.pdf │ │ │ │ │ └── onboardingThemeLightSelected.pdf │ │ │ │ ├── onboardingThemeSystem.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingThemeSystem 1.pdf │ │ │ │ │ └── onboardingThemeSystem.pdf │ │ │ │ └── onboardingThemeSystemSelected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingThemeSystemSelected 1.pdf │ │ │ │ │ └── onboardingThemeSystemSelected.pdf │ │ │ ├── firefoxLoader.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── firefoxLoader.pdf │ │ │ ├── fxHomeHeaderLogoBall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fxLogo.pdf │ │ │ ├── onboardingSyncWithIcons.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── syncWithIcons.pdf │ │ │ ├── onboardingSyncWithIconsJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingSyncWithIconsJapan.pdf │ │ │ ├── onboardingThemeDarkJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingThemeDarkJapan.pdf │ │ │ ├── onboardingThemeLightJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingThemeLightJapan.pdf │ │ │ ├── onboardingThemeSystemJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingThemeSystemJapan.pdf │ │ │ ├── onboardingToolbarIconBottom.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── toolbarBottom.pdf │ │ │ ├── onboardingToolbarIconBottomJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingToolbarIconBottomJapan-notselected.pdf │ │ │ ├── onboardingToolbarIconBottomJapanSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingToolbarIconBottomJapan-selected.pdf │ │ │ ├── onboardingToolbarIconBottomSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── toolbarBottomSelected.pdf │ │ │ ├── onboardingToolbarIconTop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── toolbarTop.pdf │ │ │ ├── onboardingToolbarIconTopJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingToolbarIconTopJapan-notselected.pdf │ │ │ ├── onboardingToolbarIconTopJapanSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingToolbarIconTopJapan-selected.pdf │ │ │ ├── onboardingToolbarIconTopSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── toolbarTopSelected.pdf │ │ │ ├── onboardingTrackers.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── trackers.pdf │ │ │ ├── onboardingTrackersJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onboardingTrackersJapan.pdf │ │ │ ├── onboardingWelcomeJapan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Firefox_Marco_Icons_x2.pdf │ │ │ ├── radioButtonNotSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radioButtonNotSelected.pdf │ │ │ └── radioButtonSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radioButtonSelected.pdf │ │ ├── Models │ │ │ ├── Buttons │ │ │ │ ├── LinkInfoModel.swift │ │ │ │ ├── OnboardingButtonInfoModel.swift │ │ │ │ ├── OnboardingButtons.swift │ │ │ │ └── OnboardingMultipleChoiceButtonModel.swift │ │ │ ├── EmbeddedLink.swift │ │ │ ├── OnboardingCardInfoModelProtocol.swift │ │ │ ├── OnboardingCardType.swift │ │ │ ├── OnboardingFlowViewModel.swift │ │ │ ├── OnboardingInstructionsPopupInfoModel.swift │ │ │ ├── TosAction.swift │ │ │ └── TosFlowViewModel.swift │ │ ├── Preview │ │ │ └── PreviewModel.swift │ │ ├── Shaders │ │ │ └── AnimatedGradient.metal │ │ └── Views │ │ │ ├── Common │ │ │ ├── OnboardingBottomSheetViewController.swift │ │ │ ├── OnboardingButton.swift │ │ │ ├── OnboardingSegmentedButton.swift │ │ │ ├── OnboardingView.swift │ │ │ └── TermsOfServiceView.swift │ │ │ ├── Compact │ │ │ ├── OnboardingBasicCardViewCompact.swift │ │ │ ├── OnboardingCardViewCompact.swift │ │ │ ├── OnboardingMultipleChoiceCardViewCompact.swift │ │ │ └── OnboardingViewCompact.swift │ │ │ ├── Helper │ │ │ ├── AnimatedGradientRenderer.swift │ │ │ ├── DescriptionAlignment.swift │ │ │ ├── OnboardingSegmentedControl.swift │ │ │ ├── ScrollBounceBehaviorModifier.swift │ │ │ ├── SheetSizedCard.swift │ │ │ └── UX.swift │ │ │ ├── LaunchScreen │ │ │ └── LaunchScreenView.swift │ │ │ ├── Regular │ │ │ ├── OnboardingBasicCardViewRegular.swift │ │ │ ├── OnboardingCardViewRegular.swift │ │ │ ├── OnboardingMultipleChoiceCardViewRegular.swift │ │ │ └── OnboardingViewRegular.swift │ │ │ └── TermsOfServiceView │ │ │ ├── TermsOfServiceCompactView.swift │ │ │ └── TermsOfServiceRegularView.swift │ ├── Redux │ │ ├── Action.swift │ │ ├── DispatchStore.swift │ │ ├── Middleware.swift │ │ ├── Reducer.swift │ │ ├── State.swift │ │ ├── Store.swift │ │ ├── StoreSubscriber.swift │ │ └── Subscription.swift │ ├── Shared │ │ ├── AlertController.swift │ │ ├── AppInfo.swift │ │ ├── AppName.swift │ │ ├── Bytes.swift │ │ ├── Cancellable.swift │ │ ├── Date │ │ │ ├── DateProvider.swift │ │ │ └── TimeConstants.swift │ │ ├── DateGroupedTableData.swift │ │ ├── Deferred │ │ │ ├── Deferred.swift │ │ │ ├── Error.swift │ │ │ ├── LockProtected.swift │ │ │ ├── Reachability.swift │ │ │ ├── ReadWriteLock.swift │ │ │ └── Result.swift │ │ ├── DeferredUtils.swift │ │ ├── DeviceInfo.swift │ │ ├── Extensions │ │ │ ├── Array+Extensions.swift │ │ │ ├── Data+Extension.swift │ │ │ ├── DataExtensions.swift │ │ │ ├── HexExtensions.swift │ │ │ ├── NSCharacterSetExtensions.swift │ │ │ ├── NSFileManagerExtensions.swift │ │ │ ├── OptionalExtensions.swift │ │ │ ├── SetExtensions.swift │ │ │ ├── String+Extension.swift │ │ │ ├── UIImageExtensions.swift │ │ │ ├── URLExtensions.swift │ │ │ ├── URLProtectionSpaceExtensions.swift │ │ │ └── WKWebViewExtensions.swift │ │ ├── Functions.swift │ │ ├── InstallationUtils.swift │ │ ├── InternalURL.swift │ │ ├── KeyboardHelper.swift │ │ ├── Loader.swift │ │ ├── NSUserDefaultsPrefs.swift │ │ ├── NetworkUtils.swift │ │ ├── Prefs.swift │ │ ├── RemoteDevices.swift │ │ ├── RemoteSettingsEnvironment.swift │ │ ├── SupportUtils.swift │ │ ├── UIDeviceDetails.swift │ │ ├── URLCaching.swift │ │ ├── UserAgent.swift │ │ └── WeakList.swift │ ├── SiteImageView │ │ ├── BundledTopSitesFavicons.xcassets │ │ │ ├── Contents.json │ │ │ ├── amazon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── amazon-com.jpg │ │ │ ├── ameblo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ameblo.png │ │ │ ├── facebook.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── facebook-com.png │ │ │ ├── firefox-jp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── firefox-jp.png │ │ │ ├── google.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── google-com.png │ │ │ ├── tenki.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tenki.png │ │ │ ├── twitter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── x-com.png │ │ │ ├── wikipedia.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── wikipedia-org.png │ │ │ ├── x.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── x-com.png │ │ │ ├── yahoo.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── yahoo.png │ │ │ └── youtube.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── youtube-com.png │ │ ├── Entities │ │ │ ├── ServerErrorHelper.swift │ │ │ ├── SiteImageError.swift │ │ │ ├── SiteImageModel.swift │ │ │ └── SiteResource.swift │ │ ├── FaviconImageView.swift │ │ ├── FaviconImageViewModel.swift │ │ ├── FaviconURLProcessing │ │ │ ├── Cache │ │ │ │ ├── FaviconURL.swift │ │ │ │ ├── FaviconURLCache.swift │ │ │ │ └── URLCacheFileManager.swift │ │ │ ├── FaviconURLHandler.swift │ │ │ └── URLFetcher │ │ │ │ ├── FaviconURLFetcher.swift │ │ │ │ └── HTMLDataRequest.swift │ │ ├── HeroImageView.swift │ │ ├── HeroImageViewColor.swift │ │ ├── HeroImageViewModel.swift │ │ ├── ImageProcessing │ │ │ ├── BundleImageFetcher │ │ │ │ └── BundleDomainBuilder.swift │ │ │ ├── HeroImageFetcher │ │ │ │ └── HeroImageFetcher.swift │ │ │ ├── ImageHandler.swift │ │ │ ├── LetterImageGenerator.swift │ │ │ ├── SiteImageCache │ │ │ │ ├── DefaultImageCache.swift │ │ │ │ └── SiteImageCache.swift │ │ │ └── SiteImageFetcher │ │ │ │ ├── DefaultSiteImageDownloader.swift │ │ │ │ ├── FaviconFetcher.swift │ │ │ │ ├── SVGImageProcessor.swift │ │ │ │ └── SiteImageDownloader.swift │ │ ├── README.md │ │ ├── SiteImageHandler.swift │ │ ├── SiteImageType.swift │ │ └── SiteImageView.swift │ ├── SummarizeKit │ │ ├── Backend │ │ │ ├── AppleIntelligence │ │ │ │ ├── FoundationModelsConfig.swift │ │ │ │ ├── FoundationModelsSummarizer.swift │ │ │ │ ├── LanguageModelResponseProtocol.swift │ │ │ │ ├── LanguageModelResponseStreamProtocol.swift │ │ │ │ ├── LanguageModelSessionAdapter.swift │ │ │ │ └── LanguageModelSessionProtocol.swift │ │ │ ├── Config │ │ │ │ ├── DefaultSummarizerConfigSource.swift │ │ │ │ ├── SummarizerConfigSourceProtocol.swift │ │ │ │ └── UserSummarizerConfigSource.swift │ │ │ ├── LLM │ │ │ │ ├── LiteLLMClient.swift │ │ │ │ ├── LiteLLMClientError.swift │ │ │ │ ├── LiteLLMClientProtocol.swift │ │ │ │ ├── LiteLLMConfig.swift │ │ │ │ ├── LiteLLMMessage.swift │ │ │ │ ├── LiteLLMResponse.swift │ │ │ │ ├── LiteLLMRole.swift │ │ │ │ ├── LiteLLMStreamResponse.swift │ │ │ │ ├── LiteLLMSummarizer.swift │ │ │ │ ├── SSEDataParser.swift │ │ │ │ └── SSEDataParserError.swift │ │ │ ├── SummarizationCheckError.swift │ │ │ ├── SummarizationCheckResult.swift │ │ │ ├── SummarizationChecker.swift │ │ │ ├── SummarizationContentType.swift │ │ │ ├── SummarizationReason.swift │ │ │ ├── SummarizerCheckerProtocol.swift │ │ │ ├── SummarizerConfig.swift │ │ │ ├── SummarizerError.swift │ │ │ ├── SummarizerInstructions.swift │ │ │ ├── SummarizerModel.swift │ │ │ ├── SummarizerProtocol.swift │ │ │ ├── SummarizerService.swift │ │ │ ├── SummarizerServiceFactory.swift │ │ │ ├── SummarizerServiceLifecycle.swift │ │ │ └── SummarizerTrigger.swift │ │ └── UI │ │ │ ├── BorderView.swift │ │ │ ├── InfoView.swift │ │ │ ├── InfoViewFormatter.swift │ │ │ ├── SummarizationError+LocalizedErrorsViewModel.swift │ │ │ ├── SummarizeController.swift │ │ │ ├── SummarizeViewConfiguration.swift │ │ │ ├── SummarizeViewModel.swift │ │ │ ├── SummaryFormatter.swift │ │ │ ├── SummaryView │ │ │ ├── SummaryBrandCell.swift │ │ │ ├── SummaryTextCell.swift │ │ │ ├── SummaryTitleCell.swift │ │ │ └── SummaryView.swift │ │ │ └── UILabel+ShimmeringEffect.swift │ ├── TabDataStore │ │ ├── README.md │ │ ├── TabData.swift │ │ ├── TabDataStore.swift │ │ ├── TabFileManager.swift │ │ ├── TabSessionStore.swift │ │ └── WindowData.swift │ ├── ToolbarKit │ │ ├── AddressToolbar │ │ │ ├── AddressToolbar.swift │ │ │ ├── AddressToolbarAddTabView.swift │ │ │ ├── AddressToolbarDelegate.swift │ │ │ ├── AddressToolbarPosition.swift │ │ │ ├── AddressToolbarState.swift │ │ │ ├── AddressToolbarUXConfiguration.swift │ │ │ ├── BrowserAddressToolbar.swift │ │ │ ├── CompactBrowserAddressToolbar.swift │ │ │ ├── LocationView │ │ │ │ ├── Callback.swift │ │ │ │ ├── LocationContainer.swift │ │ │ │ ├── LocationTextField.swift │ │ │ │ ├── LocationView.swift │ │ │ │ ├── LocationViewDelegate.swift │ │ │ │ ├── LocationViewState.swift │ │ │ │ └── SearchEngineView │ │ │ │ │ ├── DropDownSearchEngineView.swift │ │ │ │ │ ├── PlainSearchEngineView.swift │ │ │ │ │ └── SearchEngineView.swift │ │ │ └── RegularBrowserAddressToolbar.swift │ │ ├── LoadingConfig.swift │ │ ├── NavigationToolbar │ │ │ ├── BrowserNavigationToolbar.swift │ │ │ ├── NavigationToolbar.swift │ │ │ └── NavigationToolbarState.swift │ │ ├── TabNumberButton.swift │ │ ├── ToolbarButton.swift │ │ ├── ToolbarButtonCaching.swift │ │ ├── ToolbarElement.swift │ │ └── ToolbarManager.swift │ ├── UnifiedSearchKit │ │ ├── SearchEngineCell.swift │ │ ├── SearchEngineElement.swift │ │ ├── SearchEngineSection.swift │ │ └── SearchEngineTableView.swift │ └── WebEngine │ │ ├── BrowserURL.swift │ │ ├── Engine.swift │ │ ├── EngineConstants.swift │ │ ├── EngineError.swift │ │ ├── EnginePullRefreshView.swift │ │ ├── EngineSession.swift │ │ ├── EngineSessionBackForwardListItem.swift │ │ ├── EngineSessionDelegate.swift │ │ ├── EngineSessionDependencies.swift │ │ ├── EngineSessionScriptResponder.swift │ │ ├── EngineTelemetryProxy.swift │ │ ├── EngineView.swift │ │ ├── FullscreenDelegate.swift │ │ ├── README.md │ │ ├── Security │ │ ├── BrowsingContext.swift │ │ ├── BrowsingType.swift │ │ ├── NavigationDecisionType.swift │ │ ├── SchemesDefinition.swift │ │ └── SecurityManager.swift │ │ ├── Utilities │ │ ├── PopupThrottler.swift │ │ └── URLFormatter.swift │ │ └── WKWebview │ │ ├── Alerts │ │ └── WKJavaScriptAlerts.swift │ │ ├── Extension │ │ ├── URLExtension.swift │ │ └── URLRequestExtension.swift │ │ ├── Internal │ │ ├── InternalUtil.swift │ │ ├── WKAboutHomeHandler.swift │ │ ├── WKErrorPageHandler.swift │ │ ├── WKInternalSchemeHandler.swift │ │ └── WKInternalURL.swift │ │ ├── Policy │ │ ├── AppLaunchPolicyDecider.swift │ │ ├── DataSchemePolicyDecider.swift │ │ ├── HTTPSchemePolicyDecider.swift │ │ ├── LocalRequestPolicyDecider.swift │ │ ├── WKPolicy.swift │ │ ├── WKPolicyDecider.swift │ │ └── WKPolicyDeciderFactory.swift │ │ ├── Scripts │ │ ├── AdsTelemetryContentScript.swift │ │ ├── ContentScriptDelegate.swift │ │ ├── FocusContentScript.swift │ │ ├── Metadata │ │ │ ├── EnginePageMetadata.swift │ │ │ └── MetadataFetcherHelper.swift │ │ ├── PrintContentScript.swift │ │ ├── ReaderMode │ │ │ ├── DiskReaderModeCache.swift │ │ │ ├── MemoryReaderModeCache.swift │ │ │ ├── ReadabilityResult.swift │ │ │ ├── ReaderModeCache.swift │ │ │ ├── ReaderModeContentScript.swift │ │ │ ├── ReaderModeUtils.swift │ │ │ ├── WKReadabilityOperation.swift │ │ │ ├── WKReadabilityService.swift │ │ │ ├── WKReaderModeDelegate.swift │ │ │ └── WKReaderModeHandlers.swift │ │ ├── UserScriptProvider.swift │ │ ├── WKContentScript.swift │ │ ├── WKContentScriptManager.swift │ │ └── WKUserScriptManager.swift │ │ ├── WKContentBlockingSettings.swift │ │ ├── WKEngine.swift │ │ ├── WKEngineConfiguration.swift │ │ ├── WKEngineConfigurationProvider.swift │ │ ├── WKEngineSession.swift │ │ ├── WKEngineSessionData.swift │ │ ├── WKEngineView.swift │ │ ├── WKEngineWebView.swift │ │ ├── WKEngineWebViewProperty.swift │ │ ├── WKNavigationHandler.swift │ │ ├── WKScrollView.swift │ │ ├── WKSessionCreator.swift │ │ ├── WKSessionLifecycleManager.swift │ │ ├── WKUIHandler.swift │ │ ├── WKWebViewProvider.swift │ │ └── WebServer │ │ ├── WKEngineWebServer.swift │ │ └── WKWebServerUtil.swift └── Tests │ ├── .swiftlint.yml │ ├── CommonTests │ ├── Extensions │ │ ├── DictionaryExtensionTests.swift │ │ ├── StringExtensionTests.swift │ │ ├── UIViewExtensionTests.swift │ │ └── URLExtensionTests.swift │ ├── LoggerTests │ │ ├── CrashManagerTests.swift │ │ ├── LoggerFileManagerTests.swift │ │ ├── LoggerLevelTests.swift │ │ └── LoggerTests.swift │ └── Utilities │ │ └── DynamicFontHelperTests.swift │ ├── ComponentLibraryTests │ └── EmptyTest.swift │ ├── ContentBlockingGeneratorTests │ ├── ContentBlockerGeneratorTests.swift │ ├── ContentBlockerParserTests.swift │ └── MockData.swift │ ├── JWTKitTests │ ├── JWTEncoderTests.swift │ ├── JWTHS256AlgorithmTests.swift │ ├── JWTHeaderTests.swift │ └── JWTNoneAlgorithmTests.swift │ ├── MenuKitTests │ ├── .swift │ ├── MenuKitTests.swift │ ├── MenuMainViewTests.swift │ └── MenuTableViewHelperTests.swift │ ├── OnboardingKitTests │ ├── Helpers │ │ └── OnboardingTestHelper.swift │ ├── Mocks │ │ └── MockOnboardingType.swift │ └── OnboardingFlowViewModelTests.swift │ ├── ReduxTests │ ├── Mocks │ │ └── MockState.swift │ ├── ReduxIntegrationTests.swift │ ├── StoreTests.swift │ └── Utilities │ │ ├── FakeReduxAction.swift │ │ ├── FakeReduxMiddleware.swift │ │ ├── FakeReduxState.swift │ │ └── FakeReduxViewController.swift │ ├── SiteImageViewTests │ ├── FaviconURLProcessing │ │ ├── FaviconURLCacheTests.swift │ │ ├── FaviconURLFetcherTests.swift │ │ ├── FaviconURLHandlerTests.swift │ │ └── URLCacheFileManagerTests.swift │ ├── ImageProcessing │ │ ├── BundleDomainBuilderTests.swift │ │ ├── FaviconFetcherTests.swift │ │ ├── HeroImageFetcherTests.swift │ │ ├── ImageHandlerTests.swift │ │ ├── LetterImageGeneratorTests.swift │ │ └── SiteImageCacheTests.swift │ ├── Mocks │ │ ├── FaviconURLCacheMock.swift │ │ ├── FaviconURLFetcherMock.swift │ │ └── HTMLDataRequestMock.swift │ ├── Resources │ │ ├── XCTestCaseExtension.swift │ │ ├── hackernews.svg │ │ ├── inf-nan.svg │ │ └── mozilla.ico │ ├── SVGImageProcessorTests.swift │ ├── ServerErrorHelperTests.swift │ ├── SiteImageHandlerTests.swift │ ├── SiteImageModelTests.swift │ └── SiteImageViewTests.swift │ ├── SummarizeKitTests │ ├── FoundationModelsSummarizerTests.swift │ ├── LiteLLMClientTests.swift │ ├── LiteLLMSummarizerTests.swift │ ├── Mocks │ │ ├── MockBottomSheetDismissDelegate.swift │ │ ├── MockLanguageModelSession.swift │ │ ├── MockLiteLLMClient.swift │ │ ├── MockSummarizationChecker.swift │ │ ├── MockSummarizeToSAcceptor.swift │ │ ├── MockSummarizeViewModel.swift │ │ ├── MockSummarizer.swift │ │ ├── MockSummarizerService.swift │ │ ├── MockWebView.swift │ │ └── XCTest+TrackMemoryLeak.swift │ ├── SSEDataParserTests.swift │ ├── SummarizationCheckerTests.swift │ ├── SummarizeControllerTests.swift │ ├── SummarizeErrorExtensionTests.swift │ ├── SummarizeServiceFactoryTests.swift │ ├── SummarizeViewModelTests.swift │ └── SummarizerServiceTests.swift │ ├── TabDataStoreTests │ ├── Mocks │ │ └── TabFileManagerMock.swift │ ├── TabDataStoreTests.swift │ ├── TabFileManagerTests.swift │ ├── TabSessionStoreTests.swift │ └── XCTestCaseExtension.swift │ ├── ToolbarKitTests │ ├── BrowserAddressToolbarTests.swift │ ├── ToolbarButtonTests.swift │ ├── ToolbarManagerTests.swift │ └── XCTestCaseExtension.swift │ └── WebEngineTests │ ├── BrowserURLTests.swift │ ├── EngineSessionScriptResponderTests.swift │ ├── MetadataFetcherHelperTests.swift │ ├── Mock │ ├── MockAdsTelemetryDelegate.swift │ ├── MockApplication.swift │ ├── MockContentScriptDelegate.swift │ ├── MockDispatchSourceTimerFactory.swift │ ├── MockEnginePullRefreshView.swift │ ├── MockEngineScrollView.swift │ ├── MockEngineSessionDelegate.swift │ ├── MockEngineSessionScriptResponder.swift │ ├── MockEngineTelemetryProxy.swift │ ├── MockFullscreenDelegate.swift │ ├── MockMetadataFetcherHelper.swift │ ├── MockNavigationAction.swift │ ├── MockPolicyDecider.swift │ ├── MockSchemeHandler.swift │ ├── MockSessionHandler.swift │ ├── MockUIRefreshControl.swift │ ├── MockUserScriptProvider.swift │ ├── MockWKContentScript.swift │ ├── MockWKContentScriptManager.swift │ ├── MockWKEngineConfiguration.swift │ ├── MockWKEngineConfigurationProvider.swift │ ├── MockWKEngineSession.swift │ ├── MockWKEngineWebView.swift │ ├── MockWKEngineWebViewDelegate.swift │ ├── MockWKFrameInfo.swift │ ├── MockWKNavigationAction.swift │ ├── MockWKReaderModeDelegate.swift │ ├── MockWKSecurityOrigin.swift │ ├── MockWKUserScriptManager.swift │ ├── MockWKWebServerUtil.swift │ ├── MockWKWebView.swift │ ├── MockWKWebViewProvider.swift │ ├── MockWebServer.swift │ ├── UIFindInteraction.swift │ └── WKURLSchemeTaskMock.swift │ ├── Policy │ ├── AppLaunchPolicyDeciderTests.swift │ ├── DataSchemePolicyDeciderTests.swift │ ├── HTTPSchemePolicyDeciderTests.swift │ └── LocalRequestPolicyDeciderTests.swift │ ├── Scripts │ ├── AdsTelemetryContentScriptTests.swift │ ├── FocusContentScriptTests.swift │ ├── PrintContentScriptTests.swift │ ├── WKContentScriptManagerTests.swift │ └── WKUserScriptManagerTests.swift │ ├── Security │ └── SecurityManagerTests.swift │ ├── URLExtensionTests.swift │ ├── URLRequestExtensionTests.swift │ ├── Utilities │ ├── DefaultTestDependencies.swift │ ├── PopupThrottlerTests.swift │ └── URLFormatterTests.swift │ ├── WKEngineSessionTests.swift │ ├── WKEngineTests.swift │ ├── WKEngineViewTests.swift │ ├── WKEngineWebViewTests.swift │ ├── WKInternalSchemeHandlerTests.swift │ ├── WKInternalURLTests.swift │ ├── WKNavigationHandlerTests.swift │ ├── WKSessionCreatorTests.swift │ ├── WKUIHandlerTests.swift │ ├── WKWebServerUtilTests.swift │ └── XCTestCaseExtension.swift ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dangerfile.swift ├── FirefoxTelemetryUtility.sh ├── Gemfile ├── ISSUE_TEMPLATE.md ├── Info.plist ├── LICENSE ├── MozillaRustComponents ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── xcschemes │ │ └── MozillaRustComponents.xcscheme ├── MozillaRustComponents.xctestplan ├── Package.resolved ├── Package.swift ├── Sources │ ├── FocusRustComponentsWrapper │ │ ├── Generated │ │ │ ├── Metrics │ │ │ │ └── Metrics.swift │ │ │ ├── ads_client.swift │ │ │ ├── context_id.swift │ │ │ ├── errorsupport.swift │ │ │ ├── nimbus.swift │ │ │ ├── remote_settings.swift │ │ │ ├── rust_log_forwarder.swift │ │ │ ├── tracing.swift │ │ │ └── viaduct.swift │ │ ├── Nimbus │ │ │ ├── ArgumentProcessor.swift │ │ │ ├── Bundle+.swift │ │ │ ├── Collections+.swift │ │ │ ├── Dictionary+.swift │ │ │ ├── FeatureHolder.swift │ │ │ ├── FeatureInterface.swift │ │ │ ├── FeatureManifestInterface.swift │ │ │ ├── FeatureVariables.swift │ │ │ ├── HardcodedNimbusFeatures.swift │ │ │ ├── Nimbus.swift │ │ │ ├── NimbusApi.swift │ │ │ ├── NimbusBuilder.swift │ │ │ ├── NimbusCreate.swift │ │ │ ├── NimbusMessagingHelpers.swift │ │ │ ├── Operation+.swift │ │ │ └── Utils │ │ │ │ ├── Logger.swift │ │ │ │ ├── Sysctl.swift │ │ │ │ ├── Unreachable.swift │ │ │ │ └── Utils.swift │ │ └── Viaduct │ │ │ ├── RustViaductFFI.h │ │ │ └── Viaduct.swift │ └── MozillaRustComponentsWrapper │ │ ├── ASOhttpClient │ │ └── OhttpManager.swift │ │ ├── FxAClient │ │ ├── FxAKeychain │ │ │ ├── FxAKeychain.swift │ │ │ └── FxAKeychainItemAccessibility.swift │ │ ├── FxAccountConfig.swift │ │ ├── FxAccountDeviceConstellation.swift │ │ ├── FxAccountLogging.swift │ │ ├── FxAccountManager.swift │ │ ├── FxAccountOAuth.swift │ │ ├── FxAccountState.swift │ │ ├── FxAccountStorage.swift │ │ ├── KeychainWrapper+.swift │ │ ├── MZKeychain │ │ │ ├── KeychainItemAccessibility.swift │ │ │ ├── KeychainWrapper.swift │ │ │ └── KeychainWrapperSubscript.swift │ │ └── PersistedFirefoxAccount.swift │ │ ├── Generated │ │ ├── Metrics │ │ │ └── Metrics.swift │ │ ├── ads_client.swift │ │ ├── as_ohttp_client.swift │ │ ├── autofill.swift │ │ ├── context_id.swift │ │ ├── crashtest.swift │ │ ├── errorsupport.swift │ │ ├── fxa_client.swift │ │ ├── init_rust_components.swift │ │ ├── logins.swift │ │ ├── merino.swift │ │ ├── nimbus.swift │ │ ├── places.swift │ │ ├── push.swift │ │ ├── relay.swift │ │ ├── remote_settings.swift │ │ ├── rust_log_forwarder.swift │ │ ├── search.swift │ │ ├── suggest.swift │ │ ├── sync15.swift │ │ ├── syncmanager.swift │ │ ├── tabs.swift │ │ ├── tracing.swift │ │ └── viaduct.swift │ │ ├── Logins │ │ └── LoginsStorage.swift │ │ ├── Nimbus │ │ ├── ArgumentProcessor.swift │ │ ├── Bundle+.swift │ │ ├── Collections+.swift │ │ ├── Dictionary+.swift │ │ ├── FeatureHolder.swift │ │ ├── FeatureInterface.swift │ │ ├── FeatureManifestInterface.swift │ │ ├── FeatureVariables.swift │ │ ├── HardcodedNimbusFeatures.swift │ │ ├── Nimbus.swift │ │ ├── NimbusApi.swift │ │ ├── NimbusBuilder.swift │ │ ├── NimbusCreate.swift │ │ ├── NimbusMessagingHelpers.swift │ │ ├── Operation+.swift │ │ └── Utils │ │ │ ├── Logger.swift │ │ │ ├── Sysctl.swift │ │ │ ├── Unreachable.swift │ │ │ └── Utils.swift │ │ ├── Places │ │ ├── Bookmark.swift │ │ ├── HistoryMetadata.swift │ │ └── Places.swift │ │ ├── Sync15 │ │ ├── ResultError.swift │ │ ├── RustSyncTelemetryPing.swift │ │ └── SyncUnlockInfo.swift │ │ ├── SyncManager │ │ ├── SyncManagerComponent.swift │ │ └── SyncManagerTelemetry.swift │ │ └── Viaduct │ │ ├── RustViaductFFI.h │ │ └── Viaduct.swift └── Tests │ └── MozillaRustComponentsTests │ ├── CrashTestTests.swift │ ├── EventStoreTests.swift │ ├── FxAccountManagerTests.swift │ ├── FxAccountMocks.swift │ ├── LoginsTests.swift │ ├── NimbusArgumentProcessorTests.swift │ ├── NimbusFeatureVariablesTests.swift │ ├── NimbusMessagingTests.swift │ ├── NimbusTests.swift │ ├── OperationTests.swift │ ├── PlacesTests.swift │ ├── RustSyncTelemetryPingTests.swift │ └── SyncManagerTelemetryTests.swift ├── PULL_REQUEST_TEMPLATE ├── Package.resolved ├── Package.swift ├── README.md ├── SampleBrowser ├── README.md ├── SampleBrowser.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── IDETemplateMacros.plist └── SampleBrowser │ ├── AppDelegate.swift │ ├── AppLaunchUtil.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── icon-apple-app-store.png │ ├── Back.imageset │ │ ├── Contents.json │ │ └── Group.pdf │ ├── Contents.json │ ├── Forward.imageset │ │ ├── Contents.json │ │ └── Group.pdf │ ├── Menu.imageset │ │ ├── Contents.json │ │ └── menu.png │ ├── appMenuLarge.imageset │ │ ├── Contents.json │ │ └── appMenuLarge.pdf │ ├── chevronDownLarge.imageset │ │ ├── Contents.json │ │ └── chevronDownLarge.pdf │ ├── chevronUpLarge.imageset │ │ ├── Contents.json │ │ └── chevronUpLarge.pdf │ ├── crossCircleFillLarge.imageset │ │ ├── Contents.json │ │ └── crossCircleFillLarge.pdf │ ├── crossLarge.imageset │ │ ├── Contents.json │ │ └── crossLarge.pdf │ ├── crossMedium.imageset │ │ ├── Contents.json │ │ └── crossMedium.pdf │ ├── duckduckgoSearchEngine.imageset │ │ ├── Contents.json │ │ └── duckduckgo.png │ ├── lockMedium.imageset │ │ ├── Contents.json │ │ └── lockMedium.pdf │ ├── privateModeCircleFillMediumPurple.imageset │ │ ├── Contents.json │ │ └── privateModeCircleFillMediumPurple.pdf │ ├── qrCodeLarge.imageset │ │ ├── Contents.json │ │ └── qrCodeLarge.pdf │ ├── syncLarge.imageset │ │ ├── Contents.json │ │ └── syncLarge.pdf │ └── tabLarge.imageset │ │ ├── Contents.json │ │ └── tabLarge.pdf │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Dependency │ └── DependencyHelper.swift │ ├── Engine │ ├── EngineDependencyManager.swift │ ├── EngineProvider.swift │ ├── EngineProviderManager.swift │ └── Scripts │ │ ├── AllFramesAtDocumentEnd.js │ │ ├── AllFramesAtDocumentStart.js │ │ ├── MainFrameAtDocumentEnd.js │ │ ├── MainFrameAtDocumentStart.js │ │ └── WebcompatAllFramesAtDocumentStart.js │ ├── Extensions │ ├── UIAlertController+Error.swift │ ├── UISearchbar+Extension.swift │ ├── UIView+Extension.swift │ ├── UIViewController+Extension.swift │ └── WindowUUID+Extension.swift │ ├── Info.plist │ ├── Model │ ├── BrowserError.swift │ ├── DefaultAdsTrackerDefinitions.swift │ ├── RootViewControllerModel.swift │ ├── SearchModel.swift │ └── SearchViewModel.swift │ ├── Networking │ ├── SearchDataProvider.swift │ └── SearchDataProviderProtocol.swift │ ├── SceneDelegate.swift │ ├── TelemetryHandler.swift │ ├── UI │ ├── Browser │ │ ├── BrowserViewController.swift │ │ ├── ErrorPageViewController.swift │ │ └── PopupViewController.swift │ ├── Components │ │ ├── AddressToolbarContainer.swift │ │ ├── AddressToolbarContainerModel.swift │ │ ├── BrowserSearchBar.swift │ │ ├── NavigationToolbarContainer.swift │ │ ├── NavigationToolbarContainerModel.swift │ │ └── PullRefreshView.swift │ ├── RootViewController.swift │ ├── Search │ │ ├── SearchTerm.swift │ │ └── SearchViewController.swift │ ├── Settings │ │ ├── SettingsCell.swift │ │ ├── SettingsCellViewModel.swift │ │ ├── SettingsDataSource.swift │ │ ├── SettingsDelegate.swift │ │ ├── SettingsType.swift │ │ └── SettingsViewController.swift │ └── Suggestion │ │ ├── SuggestionCellViewModel.swift │ │ ├── SuggestionDataSource.swift │ │ └── SuggestionViewController.swift │ ├── testPopUp.html │ └── testPrintPreview.html ├── SampleComponentLibraryApp ├── SampleComponentLibraryApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── IDETemplateMacros.plist └── SampleComponentLibraryApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ └── Contents.json │ ├── Contents.json │ ├── chevronDownLarge.imageset │ │ ├── Contents.json │ │ └── chevronDownLarge.pdf │ ├── chevronLeftLarge.imageset │ │ ├── Contents.json │ │ └── chevronLeftLarge.pdf │ ├── chevronUpLarge.imageset │ │ ├── Contents.json │ │ └── chevronUpLarge.pdf │ ├── criticalFillLarge.imageset │ │ ├── Contents.json │ │ └── criticalFillLarge.pdf │ ├── crossCircleFillExtraLarge.imageset │ │ ├── Contents.json │ │ ├── crossCircleFillExtraLargeDark.pdf │ │ └── crossCircleFillExtraLargeLight.pdf │ ├── crossMedium.imageset │ │ ├── Contents.json │ │ └── crossMedium.pdf │ └── logoFirefoxLarge.imageset │ │ ├── Contents.json │ │ └── logoFirefoxLarge.pdf │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── BottomSheet │ ├── BottomSheetChildViewController.swift │ └── BottomSheetComponentViewModel.swift │ ├── Buttons │ ├── ButtonComponentsViewModel.swift │ └── ButtonsViewController.swift │ ├── CollapsibleCardView │ ├── CardContentView.swift │ ├── CollapsibleCardViewComponentViewModel.swift │ └── CollapsibleCardViewViewController.swift │ ├── Component │ ├── ComponentCell.swift │ ├── ComponentData.swift │ ├── ComponentDataSource.swift │ ├── ComponentDelegate.swift │ └── ComponentViewModel.swift │ ├── ContextualHintView │ ├── ContextualHintViewComponentViewModel.swift │ └── ContextualHintViewViewController.swift │ ├── Dependency │ └── DependencyHelper.swift │ ├── FadeScrollViewComponent │ ├── FadeScrollViewComponentViewModel.swift │ └── FadeScrollViewViewController.swift │ ├── Headers │ ├── HeadersComponentViewModel.swift │ └── HeadersViewViewController.swift │ ├── Info.plist │ ├── Protocol │ └── Presenter.swift │ ├── RootViewController.swift │ ├── SceneDelegate.swift │ ├── ShadowCardView │ ├── ShadowCardViewComponentViewModel.swift │ └── ShadowCardViewViewController.swift │ └── Theme+Extensions.swift ├── Sources └── DangerDependencies │ └── Fake.swift ├── TestFlight └── WhatToTest.en-US.txt ├── adr ├── 0000-use-markdown-architectural-decision-records.md ├── 0001-modernize-logging-solution.md ├── 0002-coordinators-for-navigation.md ├── 0003-redux-pilot.md ├── 0004-using-redux-to-replace-mvvm.md ├── 0005-redux-and-navigation.md ├── README.md ├── template.md └── update-readme.sh ├── bitrise.yml ├── bootstrap.sh ├── firefox-ios ├── Account │ ├── Account-Bridging-Header.h │ ├── FxAPushMessageHandler.swift │ └── Info.plist ├── Client.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── Client.xcscmblueprint │ │ │ ├── IDETemplateMacros.plist │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ ├── xcbaselines │ │ ├── 2FCAE2231ABB51F800877008.xcbaseline │ │ │ ├── FE8885C6-BB1A-48D2-9B90-E9F952C98F6B.plist │ │ │ └── Info.plist │ │ └── E6F9650B1B2F1CF20034B023.xcbaseline │ │ │ ├── F9839E4F-67D2-4920-8CE8-94CEE3A6C3D7.plist │ │ │ └── Info.plist │ │ └── xcschemes │ │ ├── Account.xcscheme │ │ ├── Fennec.xcscheme │ │ ├── Fennec_Enterprise.xcscheme │ │ ├── Firefox.xcscheme │ │ ├── FirefoxBeta.xcscheme │ │ ├── FirefoxStaging.xcscheme │ │ ├── L10nSnapshotTests.xcscheme │ │ ├── ShareTo.xcscheme │ │ ├── Storage.xcscheme │ │ ├── Sync.xcscheme │ │ ├── Telemetry.xcscheme │ │ └── Today.xcscheme ├── Client │ ├── AccessoryViewProvider.swift │ ├── AccountSyncHandler.swift │ ├── AdjustHelper.swift │ ├── AdjustTelemetryHelper.swift │ ├── Application │ │ ├── AccessibilityIdentifiers.swift │ │ ├── AppDelegate+PushNotifications.swift │ │ ├── AppDelegate+SyncSentTabs.swift │ │ ├── AppDelegate.swift │ │ ├── AppLaunchUtil.swift │ │ ├── AppSessionManager.swift │ │ ├── AppleIntelligenceUtil.swift │ │ ├── BackgroundFetchAndProcessingUtility.swift │ │ ├── BackgroundFirefoxSuggestIngestUtility.swift │ │ ├── BackgroundNotificationSurfaceUtility.swift │ │ ├── BackgroundSyncUtility.swift │ │ ├── ConversionValueUtil.swift │ │ ├── Crasher.h │ │ ├── Crasher.m │ │ ├── DebugSettingsBundleOptions.swift │ │ ├── DefaultBrowserUtility.swift │ │ ├── DependencyHelper.swift │ │ ├── ImageIdentifiers.swift │ │ ├── LaunchScreen.xib │ │ ├── LaunchSessionProvider.swift │ │ ├── QuickActions.swift │ │ ├── RemoteSettings │ │ │ ├── Application Services │ │ │ │ ├── ASRemoteSettingsCollection.swift │ │ │ │ ├── ASSearchEngineIconDataFetcher.swift │ │ │ │ ├── ASSearchEngineIconRecord.swift │ │ │ │ ├── ASSearchEnginePrefsMigrator.swift │ │ │ │ ├── ASSearchEngineProvider.swift │ │ │ │ ├── ASSearchEngineSelector.swift │ │ │ │ ├── ASSearchEngineUtilities.swift │ │ │ │ ├── ASSummarizerRemoteConfig.swift │ │ │ │ ├── ASTranslationModelsFetcher.swift │ │ │ │ ├── RemoteSettingsServiceSyncCoordinator.swift │ │ │ │ └── TranslationsVersionHelper.swift │ │ │ ├── RemoteDataType.swift │ │ │ ├── RemoteRecords │ │ │ │ ├── ContentBlockingListRecord.swift │ │ │ │ └── PasswordRuleRecord.swift │ │ │ ├── RemoteSettingsFetchConfig.swift │ │ │ └── RemoteSettingsUtils.swift │ │ ├── SceneDelegate.swift │ │ ├── Settings.bundle │ │ │ ├── Root.plist │ │ │ └── en.lproj │ │ │ │ └── Root.strings │ │ ├── UITestAppDelegate.swift │ │ ├── UnitTestAppDelegate.swift │ │ ├── UnitTestSceneDelegate.swift │ │ ├── UserConversionMetrics.swift │ │ ├── WebServer.swift │ │ ├── WebServerUtil.swift │ │ ├── WindowEventCoordinator.swift │ │ ├── WindowManager+DebugUtilities.swift │ │ ├── WindowManager.swift │ │ └── main.swift │ ├── ApplicationHelper.swift │ ├── Assets │ │ ├── About │ │ │ └── Licenses.html │ │ ├── AppIcons.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appstore-dark.png │ │ │ │ ├── appstore-tinted.png │ │ │ │ └── appstore.png │ │ │ ├── AppIcon_Alt_Color_Blue.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── blue-dark-min.png │ │ │ │ └── blue-light-min.png │ │ │ ├── AppIcon_Alt_Color_Cyan.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── cyan-dark-min.png │ │ │ │ └── cyan-light-min.png │ │ │ ├── AppIcon_Alt_Color_Green.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── green-dark-min.png │ │ │ │ └── green-light-min.png │ │ │ ├── AppIcon_Alt_Color_Orange.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── orange-dark-min.png │ │ │ │ └── orange-light-min.png │ │ │ ├── AppIcon_Alt_Color_Pink.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── pink-dark-min.png │ │ │ │ └── pink-light-min.png │ │ │ ├── AppIcon_Alt_Color_Purple.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── purple-dark-min.png │ │ │ │ └── purple-light-min.png │ │ │ ├── AppIcon_Alt_Color_Red.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── red-dark-min.png │ │ │ │ └── red-light-min.png │ │ │ ├── AppIcon_Alt_Color_Yellow.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── yellow-dark-min.png │ │ │ │ └── yellow-light-min.png │ │ │ ├── AppIcon_Alt_DarkPurple.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── legacy-icon-dark-min.png │ │ │ │ └── legacy-icon-light-min.png │ │ │ ├── AppIcon_Alt_Fun_Cool.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── cool-dark.png │ │ │ │ └── cool-light.png │ │ │ ├── AppIcon_Alt_Fun_Cuddling.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── cuddling-dark 1.png │ │ │ │ ├── cuddling-dark.png │ │ │ │ └── cuddling-light.png │ │ │ ├── AppIcon_Alt_Fun_Flaming.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── flaming-dark-no-background.png │ │ │ │ └── flaming-light.png │ │ │ ├── AppIcon_Alt_Fun_Minimal.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── minimal-dark.png │ │ │ │ └── minimal-light.png │ │ │ ├── AppIcon_Alt_Fun_Momo.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── momo-dark 1.png │ │ │ │ ├── momo-dark.png │ │ │ │ └── momo-light.png │ │ │ ├── AppIcon_Alt_Fun_Pixelated.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── pixelated-dark 1.png │ │ │ │ ├── pixelated-dark.png │ │ │ │ └── pixelated-light.png │ │ │ ├── AppIcon_Alt_Fun_Pride.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── pride-dark.png │ │ │ │ └── pride-light.png │ │ │ ├── AppIcon_Alt_Fun_Retro2004.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── retro2004-dark 1.png │ │ │ │ ├── retro2004-dark.png │ │ │ │ └── retro2004-light.png │ │ │ ├── AppIcon_Alt_Fun_Retro2017.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── retro2017-dark 1.png │ │ │ │ ├── retro2017-dark.png │ │ │ │ └── retro2017-light.png │ │ │ ├── AppIcon_Alt_Gradient_BlueHour.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── bluehour-dark-min.png │ │ │ │ └── bluehour-light-min.png │ │ │ ├── AppIcon_Alt_Gradient_GoldenHour.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── goldenhour-dark-min.png │ │ │ │ └── goldenhour-light-min.png │ │ │ ├── AppIcon_Alt_Gradient_Midday.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── midday-dark-min.png │ │ │ │ └── midday-light-min.png │ │ │ ├── AppIcon_Alt_Gradient_Midnight.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── midnight-dark-min.png │ │ │ │ └── midnight-light-min.png │ │ │ ├── AppIcon_Alt_Gradient_NorthernLights.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── northernlights-dark-min.png │ │ │ │ └── northernlights-light-min.png │ │ │ ├── AppIcon_Alt_Gradient_Sunrise.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── sunrise-dark-min.png │ │ │ │ └── sunrise-light-min.png │ │ │ ├── AppIcon_Alt_Gradient_Sunset.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── sunset-dark-min.png │ │ │ │ └── sunset-light-min.png │ │ │ ├── AppIcon_Alt_Gradient_Twilight.appiconset │ │ │ │ ├── AppIcon_Alt_Tinted.png │ │ │ │ ├── Contents.json │ │ │ │ ├── twilight-dark-min.png │ │ │ │ └── twilight-light-min.png │ │ │ ├── AppIcon_Beta.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appstore-dark.png │ │ │ │ ├── appstore-tinted.png │ │ │ │ └── appstore.png │ │ │ ├── AppIcon_Developer.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── appstore-dark.png │ │ │ │ ├── appstore-tinted.png │ │ │ │ └── appstore.png │ │ │ ├── Contents.json │ │ │ ├── appIconAlternate_color_blue.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── blue-dark.pdf │ │ │ │ └── blue-light.pdf │ │ │ ├── appIconAlternate_color_cyan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cyan-dark.pdf │ │ │ │ └── cyan-light.pdf │ │ │ ├── appIconAlternate_color_green.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── green-dark.pdf │ │ │ │ └── green-light.pdf │ │ │ ├── appIconAlternate_color_orange.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── orange-dark.pdf │ │ │ │ └── orange-light.pdf │ │ │ ├── appIconAlternate_color_pink.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pink-dark.pdf │ │ │ │ └── pink-light.pdf │ │ │ ├── appIconAlternate_color_purple.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── purple-dark.pdf │ │ │ │ └── purple-light.pdf │ │ │ ├── appIconAlternate_color_red.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── red-dark.pdf │ │ │ │ └── red-light.pdf │ │ │ ├── appIconAlternate_color_yellow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yellow-dark.pdf │ │ │ │ └── yellow-light.pdf │ │ │ ├── appIconAlternate_darkPurple.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dark-purple.pdf │ │ │ ├── appIconAlternate_default.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── default-no-bg.pdf │ │ │ ├── appIconAlternate_fun_cool.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cool-dark.png │ │ │ │ └── cool-light.png │ │ │ ├── appIconAlternate_fun_cuddling.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── cuddling-dark.png │ │ │ │ └── cuddling-light.png │ │ │ ├── appIconAlternate_fun_flaming.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── flaming-dark-no-bckground.png │ │ │ │ └── flaming-light.png │ │ │ ├── appIconAlternate_fun_minimal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── minimal-dark.png │ │ │ │ └── minimal-light.png │ │ │ ├── appIconAlternate_fun_momo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── momo-dark.png │ │ │ │ └── momo-light.png │ │ │ ├── appIconAlternate_fun_pixelated.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pixelated-dark.png │ │ │ │ └── pixelated-light.png │ │ │ ├── appIconAlternate_fun_pride.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pride-dark.png │ │ │ │ └── pride-light.png │ │ │ ├── appIconAlternate_fun_retro2004.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── retro2004-dark.png │ │ │ │ └── retro2004-light.png │ │ │ ├── appIconAlternate_fun_retro2017.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── retro2017-dark.png │ │ │ │ └── retro2017-light.png │ │ │ ├── appIconAlternate_gradient_blueHour.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bluehour-dark.pdf │ │ │ │ └── bluehour-light.pdf │ │ │ ├── appIconAlternate_gradient_goldenHour.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── goldenhour-dark.pdf │ │ │ │ └── goldenhour-light.pdf │ │ │ ├── appIconAlternate_gradient_midday.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── midday-dark.pdf │ │ │ │ └── midday-light.pdf │ │ │ ├── appIconAlternate_gradient_midnight.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── midnight-dark.pdf │ │ │ │ └── midnight-light.pdf │ │ │ ├── appIconAlternate_gradient_northernLights.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── northernlights-dark.pdf │ │ │ │ └── northernlights-light.pdf │ │ │ ├── appIconAlternate_gradient_sunrise.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sunrise-dark.pdf │ │ │ │ └── sunrise-light.pdf │ │ │ ├── appIconAlternate_gradient_sunset.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sunset-dark.pdf │ │ │ │ └── sunset-light.pdf │ │ │ └── appIconAlternate_gradient_twilight.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── twilight-dark.pdf │ │ │ │ └── twilight-light.pdf │ │ ├── CC_Script │ │ │ ├── AddressMetaData.sys.mjs │ │ │ ├── AddressMetaDataExtension.sys.mjs │ │ │ ├── AddressMetaDataLoader.sys.mjs │ │ │ ├── AddressParser.sys.mjs │ │ │ ├── AddressRecord.sys.mjs │ │ │ ├── AutofillFormFactory.sys.mjs │ │ │ ├── AutofillTelemetry.sys.mjs │ │ │ ├── CC_Python_Update.py │ │ │ ├── Constants.ios.mjs │ │ │ ├── CreditCard.sys.mjs │ │ │ ├── CreditCardRecord.sys.mjs │ │ │ ├── CreditCardRuleset.sys.mjs │ │ │ ├── EmptyModule.sys.mjs │ │ │ ├── FieldScanner.sys.mjs │ │ │ ├── FormAutofill.ios.sys.mjs │ │ │ ├── FormAutofill.sys.mjs │ │ │ ├── FormAutofillChild.ios.sys.mjs │ │ │ ├── FormAutofillExtras.ios.mjs │ │ │ ├── FormAutofillHandler.sys.mjs │ │ │ ├── FormAutofillHeuristics.sys.mjs │ │ │ ├── FormAutofillNameUtils.sys.mjs │ │ │ ├── FormAutofillSection.ios.sys.mjs │ │ │ ├── FormAutofillSection.sys.mjs │ │ │ ├── FormAutofillUtils.sys.mjs │ │ │ ├── FormLikeFactory.sys.mjs │ │ │ ├── FormStateManager.sys.mjs │ │ │ ├── Helpers.ios.mjs │ │ │ ├── HeuristicsRegExp.sys.mjs │ │ │ ├── LabelUtils.sys.mjs │ │ │ ├── LoginFormFactory.sys.mjs │ │ │ ├── LoginFormState.sys.mjs │ │ │ ├── LoginManager.shared.sys.mjs │ │ │ ├── NewPasswordModel.sys.mjs │ │ │ ├── Overrides.ios.js │ │ │ ├── PasswordGenerator.sys.mjs │ │ │ ├── PasswordRulesParser.sys.mjs │ │ │ ├── PhoneNumber.sys.mjs │ │ │ ├── PhoneNumberMetaData.sys.mjs │ │ │ ├── PhoneNumberNormalizer.sys.mjs │ │ │ ├── TranslationsHelpers.mjs │ │ │ ├── TranslationsUtils.mjs │ │ │ ├── addressFormLayout.mjs │ │ │ ├── bergamot-translator.js │ │ │ ├── fathom.mjs │ │ │ ├── translations-document.sys.mjs │ │ │ ├── translations-engine.sys.mjs │ │ │ └── translations-engine.worker.js │ │ ├── CertError.css │ │ ├── CertError.html │ │ ├── Debug │ │ │ └── testPopUp.html │ │ ├── Fonts │ │ │ ├── NewYorkMedium-Bold.otf │ │ │ ├── NewYorkMedium-BoldItalic.otf │ │ │ ├── NewYorkMedium-Regular.otf │ │ │ └── NewYorkMedium-RegularItalic.otf │ │ ├── FxASignIn.js │ │ ├── Images.xcassets │ │ │ ├── Autofill │ │ │ │ ├── Contents.json │ │ │ │ ├── logo_amex.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_amex.pdf │ │ │ │ ├── logo_diners.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_diners.pdf │ │ │ │ ├── logo_discover.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_discover.pdf │ │ │ │ ├── logo_jcb.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_jcb.pdf │ │ │ │ ├── logo_mastercard.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_mastercard.pdf │ │ │ │ ├── logo_mir.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_mir.pdf │ │ │ │ ├── logo_unionpay.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_unionpay.pdf │ │ │ │ └── logo_visa.imageset │ │ │ │ │ ├── 512_512VISA.pdf │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo_visa.pdf │ │ │ ├── Contents.json │ │ │ ├── NativeErrorPage │ │ │ │ ├── Contents.json │ │ │ │ ├── noInternetConnection.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── noInternetConnection.pdf │ │ │ │ └── securityError.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── securityError.pdf │ │ │ ├── New Tab - Reader │ │ │ │ ├── Contents.json │ │ │ │ ├── SettingsSansSerif.imageset │ │ │ │ │ ├── AaFira.png │ │ │ │ │ ├── AaFira@2x.png │ │ │ │ │ ├── AaFira@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── SettingsSerif.imageset │ │ │ │ │ ├── AaCharis.png │ │ │ │ │ ├── AaCharis@2x.png │ │ │ │ │ ├── AaCharis@3x.png │ │ │ │ │ └── Contents.json │ │ │ ├── Onboarding │ │ │ │ ├── Contents.json │ │ │ │ ├── Headers │ │ │ │ │ ├── CTD │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── onboardingNotificationsCTD.imageset │ │ │ │ │ │ │ ├── CTD_onboarding_3.png │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── onboardingSyncCTD.imageset │ │ │ │ │ │ │ ├── CTD_onboarding_2.png │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── onboardingWelcomeCTD.imageset │ │ │ │ │ │ │ ├── CTD_onboarding_1_dark.png │ │ │ │ │ │ │ ├── CTD_onboarding_1_light.pdf │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingDock.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── onboardingDock.pdf │ │ │ │ │ ├── onboardingFoxyWindow.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── buildABetterWeb.pdf │ │ │ │ │ ├── onboardingNotification.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── onboardingNotifications.pdf │ │ │ │ │ ├── onboardingSearchWidget.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── onboardingSearchWidget.pdf │ │ │ │ │ ├── onboardingSetDefaultSteps.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── onboardingSetDefaultSteps.pdf │ │ │ │ │ ├── onboardingSync.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── onboardingSync.pdf │ │ │ │ │ ├── onboardingThemeing.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── onboardingThemeing.pdf │ │ │ │ │ ├── onboardingToolbar.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── toolbarpicker.pdf │ │ │ │ │ ├── onboardingWelcome.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── onboardingWelcome.pdf │ │ │ │ │ └── signin-sync.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── signin-sync-glow.pdf │ │ │ │ └── MultipleChoiceButtons │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Theme │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── onboardingThemeDark.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── themeDark.pdf │ │ │ │ │ ├── onboardingThemeLight.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── themeLight.pdf │ │ │ │ │ └── onboardingThemeSystem.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── themeSystem.pdf │ │ │ │ │ ├── onboardingToolbarIconBottom.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── toolbarBottom.pdf │ │ │ │ │ └── onboardingToolbarIconTop.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── toolbarTop.pdf │ │ │ ├── addToHomescreenLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── addToHomescreenLarge.pdf │ │ │ ├── addressBarIllustrationBottom.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── addressBarIllustrationBottom.pdf │ │ │ ├── addressBarIllustrationTop.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── addressBarIllustrationTop.pdf │ │ │ ├── appMenuLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── appMenuLarge.pdf │ │ │ ├── appendUpLeftLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── appendUpLeftLarge.pdf │ │ │ ├── appleIntelligence.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── appleIntelligence.pdf │ │ │ ├── arrowClockwiseLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowClockwiseLarge.pdf │ │ │ ├── arrowClockwiseMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowClockwiseMedium.pdf │ │ │ ├── arrowCounterClockwiseLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowCounterClockwiseLarge.pdf │ │ │ ├── arrowTrendingLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── arrowTrendingLarge.pdf │ │ │ ├── automaticBrowserThemeGradient.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── automaticBrowserThemeGradient.pdf │ │ │ ├── avatarCircleLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── avatarCircleLarge.pdf │ │ │ ├── avatarWarningCircleFillMulticolorLargeDark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── avatarWarningCircleFillMulticolorLargeDark.pdf │ │ │ ├── avatarWarningCircleFillMulticolorLargeLight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── avatarWarningCircleFillMulticolorLargeLight.pdf │ │ │ ├── backLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── backLarge.pdf │ │ │ ├── badge-mask.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── badge-mask.pdf │ │ │ ├── bookmarkBadgeFillMediumBlue50.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmarkBadgeFillMediumBlue50.pdf │ │ │ ├── bookmarkFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmarkFillLarge.pdf │ │ │ ├── bookmarkHalfLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmarkHalfLarge.pdf │ │ │ ├── bookmarkLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmarkLarge.pdf │ │ │ ├── bookmarkSlashLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmarkSlashLarge.pdf │ │ │ ├── bookmarkTrayFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmarkTrayFillLarge.pdf │ │ │ ├── bookmarkTrayLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bookmarkTrayLarge.pdf │ │ │ ├── checkmarkLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── checkmarkLarge.pdf │ │ │ ├── chevronDownExtraSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevronDownExtraSmall.pdf │ │ │ ├── chevronDownLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevronDownLarge.pdf │ │ │ ├── chevronLeftLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevronLeftLarge.pdf │ │ │ ├── chevronRightLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevronRightLarge.pdf │ │ │ ├── chevronUpLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chevronUpLarge.pdf │ │ │ ├── clipboardLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── clipboardLarge.pdf │ │ │ ├── cloudLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cloudLarge.pdf │ │ │ ├── competitivenessLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── competitivenessLarge.pdf │ │ │ ├── cookiesLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cookiesLarge.pdf │ │ │ ├── creditCardLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── creditCardLarge.pdf │ │ │ ├── criticalFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── criticalFillLarge.pdf │ │ │ ├── crossCircleFillExtraLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── crossCircleFillExtraLargeDark.pdf │ │ │ │ └── crossCircleFillExtraLargeLight.pdf │ │ │ ├── crossCircleFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── crossCircleFillLarge.pdf │ │ │ ├── crossCircleFillMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── crossCircleFillMedium.pdf │ │ │ ├── crossLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── crossLarge.pdf │ │ │ ├── crossMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── crossMedium.pdf │ │ │ ├── darkBrowserThemeGradient.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── darkBrowserThemeGradient.pdf │ │ │ ├── dataClearanceLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dataClearanceLarge.pdf │ │ │ ├── deleteLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── deleteLarge.pdf │ │ │ ├── deviceDesktopLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── deviceDesktopLarge.pdf │ │ │ ├── deviceDesktopSendLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── deviceDesktopSendLarge.pdf │ │ │ ├── deviceMobileLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── deviceMobileLarge.pdf │ │ │ ├── deviceTabletLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── deviceTabletLarge.pdf │ │ │ ├── downloadLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── downloadLarge.pdf │ │ │ ├── editLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── editLarge.pdf │ │ │ ├── ellipsisLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ellipsisLarge.pdf │ │ │ ├── emailMaskLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emailMaskLarge.pdf │ │ │ ├── emptySync.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── emptySync.png │ │ │ │ ├── emptySync@2x.png │ │ │ │ └── emptySync@3x.png │ │ │ ├── externalLinkSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── externalLinkSmall.pdf │ │ │ ├── faviconFox.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── back-panel-home.png │ │ │ │ ├── back-panel-home@2x.png │ │ │ │ └── back-panel-home@3x.png │ │ │ ├── file.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── document-64.pdf │ │ │ ├── fingerprinterLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fingerprinterLarge.pdf │ │ │ ├── folderLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── folderLarge.pdf │ │ │ ├── forwardLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── forwardLarge.pdf │ │ │ ├── foxConfirmation.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── foxConfirmation.pdf │ │ │ ├── foxDefaultBrowser.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Illu.png │ │ │ ├── fxHomeHeaderLogoBall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fxLogo.pdf │ │ │ ├── fxHomeHeaderLogoText.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fxHomeHeaderLogoText.pdf │ │ │ ├── globeLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── globeLarge.pdf │ │ │ ├── gridAddLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gridAddLarge.pdf │ │ │ ├── helpCircleLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── helpCircleLarge.pdf │ │ │ ├── historyLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── historyLarge.pdf │ │ │ ├── homeLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── homeLarge.pdf │ │ │ ├── homepage-pocket.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── homepage-pocket.pdf │ │ │ ├── imageLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── imageLarge.pdf │ │ │ ├── lightBrowserThemeGradient.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lightBrowserThemeGradient.pdf │ │ │ ├── lightbulbLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lightbulbLarge.pdf │ │ │ ├── lightningFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── lightningFillLarge.pdf │ │ │ │ ├── qrcode-scanBorder.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── qrcode-scanBorder.png │ │ │ │ └── qrcode-scanLine.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── qrcode-scanLine.png │ │ │ ├── lightningLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lightningLarge.pdf │ │ │ ├── lightningMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lightningMedium.pdf │ │ │ ├── linkLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── linkLarge.pdf │ │ │ ├── locationLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── locationLarge.pdf │ │ │ ├── lockFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lockFillLarge.pdf │ │ │ ├── lockLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── lockLarge.pdf │ │ │ ├── lockSlashFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── lockSlashFillLargeDark.pdf │ │ │ │ └── lockSlashFillLargeLight.pdf │ │ │ ├── lockSlashLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── lockSlashLargeDark.pdf │ │ │ │ └── lockSlashLargeLight.pdf │ │ │ ├── loginLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── loginLarge.pdf │ │ │ ├── logoFirefoxLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logoFirefoxLarge.pdf │ │ │ ├── menuBadge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── badge-1.pdf │ │ │ ├── moreHorizontalRoundLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── moreHorizontalRoundLarge.pdf │ │ │ ├── newFolderLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── newFolderLarge.pdf │ │ │ ├── nightModeFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nightModeFillLarge.pdf │ │ │ ├── nightModeLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nightModeLarge.pdf │ │ │ ├── nightModeMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nightModeMedium.pdf │ │ │ ├── noBookmarksInFolder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MobileBookmarks_folder.pdf │ │ │ ├── noBookmarksInRoot.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── noBookmarks.pdf │ │ │ ├── notificationDotFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── notificationDotFillLarge.pdf │ │ │ ├── notificationDotFillSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── notificationDotFillSmall.pdf │ │ │ ├── notificationDotLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── notificationDotLarge.pdf │ │ │ ├── notificationDotSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── notificationDotSmall.pdf │ │ │ ├── packagingLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── packagingLarge.pdf │ │ │ ├── pageZoomFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pageZoomFillLarge.pdf │ │ │ ├── pageZoomLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pageZoomLarge.pdf │ │ │ ├── pinBadgeFillSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pinBadgeFillSmall.pdf │ │ │ ├── pinFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pinFillLarge.pdf │ │ │ ├── pinLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pinLarge.pdf │ │ │ ├── pinSlashFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pinSlashFillLarge.pdf │ │ │ ├── pinSlashLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pinSlashLarge.pdf │ │ │ ├── plusLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── plusLarge.pdf │ │ │ ├── priceLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── priceLarge.pdf │ │ │ ├── printLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── printLarge.pdf │ │ │ ├── privateModeCircleFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── privateModeCircleFillLarge.pdf │ │ │ ├── privateModeCircleFillMediumPurple.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── privateModeCircleFillMediumPurple.pdf │ │ │ ├── privateModeLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── privateModeLarge.pdf │ │ │ ├── protectionPanelAlert.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Protection-Panel-Illustration-On.pdf │ │ │ ├── protectionPanelOff.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Protection-Panel-Illustration-On.pdf │ │ │ ├── protectionPanelOn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Protection-Panel-Illustration-On.pdf │ │ │ ├── qrCodeLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qrCodeLarge.pdf │ │ │ ├── qualityLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qualityLarge.pdf │ │ │ ├── radioButtonNotSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radioButtonNotSelected.pdf │ │ │ ├── radioButtonSelected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── radioButtonSelected.pdf │ │ │ ├── readerViewFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── readerViewFillLarge.pdf │ │ │ ├── readerViewLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── readerViewLarge.pdf │ │ │ ├── readerViewMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── readerViewMedium.pdf │ │ │ ├── readingListAddLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── readingListAddLarge.pdf │ │ │ ├── readingListLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── readingListLarge.pdf │ │ │ ├── readingListSlashFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── readingListSlashFillLarge.pdf │ │ │ ├── saveFileLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── saveFileLarge.pdf │ │ │ ├── saveLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── saveLarge.pdf │ │ │ ├── searchLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── searchLarge.pdf │ │ │ ├── settingsLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settingsLarge.pdf │ │ │ ├── shareLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shareLarge.pdf │ │ │ ├── shareMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shareiOSMedium.pdf │ │ │ ├── shieldCheckmarkFillSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shieldCheckmarkFillSmall.pdf │ │ │ ├── shieldCheckmarkLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shieldCheckmarkLarge.pdf │ │ │ ├── shieldLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shieldLarge.pdf │ │ │ ├── shieldSlashFillMulticolorSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shieldSlashFillMulticolorSmallDark.pdf │ │ │ │ └── shieldSlashFillMulticolorSmallLight.pdf │ │ │ ├── shieldSlashLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shieldSlashLarge.pdf │ │ │ ├── shippingLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shippingLarge.pdf │ │ │ ├── socialMediaLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── socialTrackerLarge.pdf │ │ │ ├── splash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── splash.png │ │ │ │ ├── splash@2x.png │ │ │ │ └── splash@3x.png │ │ │ ├── sponsoredStarSmall.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sponsoredStarSmall.pdf │ │ │ ├── starFillMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── starFillMedium.pdf │ │ │ ├── starOneHalfFillMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── starOneHalfFillMediumDark.pdf │ │ │ │ └── starOneHalfFillMediumLight.pdf │ │ │ ├── subtractLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── subtractLarge.pdf │ │ │ ├── summarizerLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── summarizerLarge.pdf │ │ │ ├── sunFillMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sunFillMedium.pdf │ │ │ ├── sunMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sunMedium.pdf │ │ │ ├── syncLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── syncLarge.pdf │ │ │ ├── syncTabsLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── syncTabsLarge.pdf │ │ │ ├── sync_open_tab.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Group 349.pdf │ │ │ ├── tabLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabLarge.pdf │ │ │ ├── tabTrayLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabTrayLarge.pdf │ │ │ ├── toolLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── toolLarge.pdf │ │ │ ├── translateActive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── translateActive.pdf │ │ │ ├── translateMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── translateMedium.pdf │ │ │ ├── warning-mask.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── warning-mask.pdf │ │ │ ├── warningFillLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── warningFillLarge.pdf │ │ │ ├── warningLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── warningLarge.pdf │ │ │ └── whatsNewLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── whatsNewLarge.pdf │ │ ├── LiquidGlassAppIcons │ │ │ ├── AppIcon.icon │ │ │ │ ├── Assets │ │ │ │ │ ├── alt-tail.svg │ │ │ │ │ ├── alt-top.svg │ │ │ │ │ ├── b-mid.svg │ │ │ │ │ └── orb.svg │ │ │ │ └── icon.json │ │ │ ├── AppIcon_Beta.icon │ │ │ │ ├── Assets │ │ │ │ │ ├── beta-label-mono.svg │ │ │ │ │ ├── beta-label.svg │ │ │ │ │ ├── label-back.svg │ │ │ │ │ ├── release-1.svg │ │ │ │ │ ├── release-2.svg │ │ │ │ │ ├── release-3.svg │ │ │ │ │ └── release-4.svg │ │ │ │ └── icon.json │ │ │ └── AppIcon_Developer.icon │ │ │ │ ├── Assets │ │ │ │ ├── nightly-1.svg │ │ │ │ ├── nightly-2.svg │ │ │ │ ├── nightly-3.svg │ │ │ │ └── nightly-4.svg │ │ │ │ └── icon.json │ │ ├── NetError.css │ │ ├── NetError.html │ │ ├── RemoteSettingsData │ │ │ ├── RemotePasswordRules.json │ │ │ ├── RemoteSettingsFetchConfig.json │ │ │ ├── Update_Remote_Settings.py │ │ │ └── attachments │ │ │ │ └── tracking-protection-lists-ios │ │ │ │ ├── disconnect-block-advertising.json │ │ │ │ ├── disconnect-block-analytics.json │ │ │ │ ├── disconnect-block-content.json │ │ │ │ ├── disconnect-block-cookies-advertising.json │ │ │ │ ├── disconnect-block-cookies-analytics.json │ │ │ │ ├── disconnect-block-cookies-content.json │ │ │ │ ├── disconnect-block-cookies-social.json │ │ │ │ ├── disconnect-block-cryptomining.json │ │ │ │ ├── disconnect-block-fingerprinting.json │ │ │ │ └── disconnect-block-social.json │ │ ├── SpotlightHelper.js │ │ ├── easterEggGif.gif │ │ └── topdomains.txt │ ├── BookmarkItemsHelper.swift │ ├── Client-Bridging-Header.h │ ├── Configuration │ │ ├── Common.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Fennec.enterprise.xcconfig │ │ ├── Fennec.xcconfig │ │ ├── Firefox.xcconfig │ │ ├── FirefoxBeta.xcconfig │ │ ├── FirefoxStaging.xcconfig │ │ ├── Release.xcconfig │ │ └── version.xcconfig │ ├── ContentBlocker │ │ ├── ContentBlocker+Safelist.swift │ │ ├── ContentBlocker.swift │ │ ├── TabContentBlocker+ContentScript.swift │ │ ├── TabContentBlocker.swift │ │ ├── TrackingProtectionPageStats.swift │ │ └── TrackingProtectionStats.js │ ├── Coordinators │ │ ├── AddressAutofillCoordinator.swift │ │ ├── BaseCoordinator.swift │ │ ├── Browser │ │ │ ├── BrowserCoordinator.swift │ │ │ ├── BrowserDelegate.swift │ │ │ └── BrowserNavigationHandler.swift │ │ ├── Coordinator.swift │ │ ├── CredentialAutofillCoordinator.swift │ │ ├── EnhancedTrackingProtectionCoordinator.swift │ │ ├── Launch │ │ │ ├── LaunchCoordinator.swift │ │ │ └── LaunchType.swift │ │ ├── LaunchView │ │ │ ├── LaunchScreenView.swift │ │ │ ├── LaunchScreenViewController.swift │ │ │ ├── LaunchScreenViewModel.swift │ │ │ ├── ModernLaunchScreenViewController.swift │ │ │ └── SplashScreenAnimation.swift │ │ ├── Library │ │ │ ├── BookmarksCoordinator.swift │ │ │ ├── DownloadsCoordinator.swift │ │ │ ├── HistoryCoordinator.swift │ │ │ ├── LibraryCoordinator.swift │ │ │ ├── LibraryPanelCoordinatorDelegate.swift │ │ │ └── ReadingListCoordinator.swift │ │ ├── ParentCoordinatorDelegate.swift │ │ ├── PasswordManagerCoordinator.swift │ │ ├── QRCode │ │ │ ├── QRCodeCoordinator.swift │ │ │ └── QRCodeNavigationHandler.swift │ │ ├── Router │ │ │ ├── DeeplinkInput.swift │ │ │ ├── DefaultRouter.swift │ │ │ ├── DismissalNotifiable.swift │ │ │ ├── Route.swift │ │ │ ├── RouteBuilder.swift │ │ │ ├── Router.swift │ │ │ └── URLScanner.swift │ │ ├── Scene │ │ │ ├── SceneContainer.swift │ │ │ ├── SceneCoordinator.swift │ │ │ ├── SceneSetupHelper.swift │ │ │ └── ScreenshotService.swift │ │ ├── SettingsCoordinator.swift │ │ ├── ShareSheetCoordinator.swift │ │ ├── SummarizeCoordinator.swift │ │ └── TabTray │ │ │ ├── RemoteTabsCoordinator.swift │ │ │ ├── TabTrayCoordinator.swift │ │ │ └── TabsCoordinator.swift │ ├── CrashTracker.swift │ ├── Entitlements │ │ ├── FennecApplication.entitlements │ │ ├── FennecEnterpriseApplication.entitlements │ │ ├── FirefoxApplication.entitlements │ │ └── FirefoxBetaApplication.entitlements │ ├── Experiments │ │ ├── BehavioralTargetingEvent.swift │ │ ├── Experiments.swift │ │ ├── Messaging │ │ │ ├── GleanPlumbContextProvider.swift │ │ │ ├── GleanPlumbMessage.swift │ │ │ ├── GleanPlumbMessageManager.swift │ │ │ ├── GleanPlumbMessageStore.swift │ │ │ ├── MobileMessageSurfaceProtocol.swift │ │ │ ├── NimbusMessagingEvaluationUtility.swift │ │ │ └── NimbusMessagingHelperUtilityProtocol.swift │ │ ├── RecordedNimbusContext.swift │ │ ├── Settings │ │ │ ├── ExperimentsBranchesViewController.swift │ │ │ ├── ExperimentsSettingsViewController.swift │ │ │ ├── ExperimentsViewController.swift │ │ │ └── Views │ │ │ │ ├── ExperimentsSettingsView.swift │ │ │ │ └── ExperimentsTableView.swift │ │ ├── UserResearch.swift │ │ └── initial_experiments.json │ ├── Extensions │ │ ├── CGRect+Extension.swift │ │ ├── Calendar+Extension.swift │ │ ├── EnvironmentValues+Extension.swift │ │ ├── Locale+Extension.swift │ │ ├── PDFDocument+Extension.swift │ │ ├── String+Extension.swift │ │ ├── UIAlertController+Extension.swift │ │ ├── UIColor+Color.swift │ │ ├── UIControl+Extension.swift │ │ ├── UIDevice+Extension.swift │ │ ├── UIEdgeInsets+Extension.swift │ │ ├── UIFont+Extension.swift │ │ ├── UIImage+Extension.swift │ │ ├── UIImage+RenderingUtilities.swift │ │ ├── UIModalPresentationStyle+Photon.swift │ │ ├── UIPasteboard+Extension.swift │ │ ├── UIView+Extension.swift │ │ ├── UIView+Screenshot.swift │ │ ├── UIView+SnapKit.swift │ │ ├── UIView+ThemeUUIDIdentifiable.swift │ │ ├── UIViewController+Extension.swift │ │ ├── UIWindow+Extension.swift │ │ ├── URL+Mail.swift │ │ ├── URLSession+sharedMPTCP.swift │ │ ├── URLSessionConfiguration+defaultMPTCP.swift │ │ └── UserDefaults+valueExists.swift │ ├── FeatureFlags │ │ ├── CoreFlaggableFeature.swift │ │ ├── FlaggableFeatureOptions.swift │ │ ├── LegacyFeatureFlagsManager.swift │ │ └── NimbusFlaggableFeature.swift │ ├── FennecTesting.xcconfig │ ├── Frontend │ │ ├── Accessors │ │ │ ├── HomePageAccessors.swift │ │ │ └── NewTabAccessors.swift │ │ ├── AuthenticationManager │ │ │ ├── AppAuthenticator.swift │ │ │ └── SensitiveViewController.swift │ │ ├── Autofill │ │ │ ├── Address │ │ │ │ ├── AddressAutoFillBottomSheetView.swift │ │ │ │ ├── AddressAutofillSettingsView.swift │ │ │ │ ├── AddressAutofillSettingsViewController.swift │ │ │ │ ├── AddressAutofillSettingsViewModel.swift │ │ │ │ ├── AddressAutofillToggle.swift │ │ │ │ ├── AddressCellView.swift │ │ │ │ ├── AddressListView.swift │ │ │ │ ├── AddressListViewModel.swift │ │ │ │ ├── AddressScrollView.swift │ │ │ │ ├── AddressUtility │ │ │ │ │ └── AddressLocaleFeatureValidator.swift │ │ │ │ └── Edit │ │ │ │ │ ├── Address+Encodable.swift │ │ │ │ │ ├── AddressModifiedStatus.swift │ │ │ │ │ ├── EditAddressLocalization.swift │ │ │ │ │ ├── EditAddressViewController.swift │ │ │ │ │ ├── EditAddressWebViewManager.swift │ │ │ │ │ ├── RemoveAddressButton.swift │ │ │ │ │ └── UpdatableAddressFields+Decodable.swift │ │ │ ├── AutofillAccessoryViewButtonItem.swift │ │ │ ├── AutofillFooterView.swift │ │ │ ├── AutofillHeaderView.swift │ │ │ ├── CreditCard │ │ │ │ ├── CreditCardBottomSheet │ │ │ │ │ ├── CreditCardBottomSheetFooterView.swift │ │ │ │ │ ├── CreditCardBottomSheetHeaderView.swift │ │ │ │ │ ├── CreditCardBottomSheetViewController.swift │ │ │ │ │ ├── CreditCardBottomSheetViewModel.swift │ │ │ │ │ └── CreditCardProvider.swift │ │ │ │ ├── CreditCardSettingsView │ │ │ │ │ ├── CreditCardInputView.swift │ │ │ │ │ ├── CreditCardInputViewModel.swift │ │ │ │ │ ├── CreditCardItemRow.swift │ │ │ │ │ ├── CreditCardSectionHeader.swift │ │ │ │ │ ├── CreditCardSettingsEmptyView.swift │ │ │ │ │ ├── CreditCardSettingsViewController.swift │ │ │ │ │ ├── CreditCardSettingsViewModel.swift │ │ │ │ │ ├── CreditCardTableViewController.swift │ │ │ │ │ └── CreditCardTableViewModel.swift │ │ │ │ ├── Logic │ │ │ │ │ ├── CreditCardInputFieldHelper.swift │ │ │ │ │ └── CreditCardValidator.swift │ │ │ │ └── ViewComponents │ │ │ │ │ ├── CreditCardAutofillToggle.swift │ │ │ │ │ ├── CreditCardInputField.swift │ │ │ │ │ ├── PreferredFont.swift │ │ │ │ │ ├── RemoveCardButton.swift │ │ │ │ │ └── Style.swift │ │ │ ├── LoginAutofillView.swift │ │ │ ├── LoginCellView.swift │ │ │ ├── LoginListView.swift │ │ │ ├── LoginListViewModel.swift │ │ │ ├── LoginStorage.swift │ │ │ └── SelfSizingHostingController.swift │ │ ├── AutoplayAccessors.swift │ │ ├── Browser │ │ │ ├── Authenticator.swift │ │ │ ├── BackForwardListAnimator.swift │ │ │ ├── BackForwardListViewController.swift │ │ │ ├── BackForwardTableViewCell.swift │ │ │ ├── BrowserPrompts.swift │ │ │ ├── BrowserViewController │ │ │ │ ├── Actions │ │ │ │ │ ├── GeneralBrowserAction.swift │ │ │ │ │ ├── NavigationBrowserAction.swift │ │ │ │ │ └── WebContextMenuActionsProvider.swift │ │ │ │ ├── Extensions │ │ │ │ │ ├── BrowserViewController+AddressBarPanGestureHandlerDelegate.swift │ │ │ │ │ ├── BrowserViewController+DownloadQueueDelegate.swift │ │ │ │ │ ├── BrowserViewController+FindInPage.swift │ │ │ │ │ ├── BrowserViewController+KeyCommands.swift │ │ │ │ │ ├── BrowserViewController+ReaderMode.swift │ │ │ │ │ ├── BrowserViewController+TabScrollHandlerDelegate.swift │ │ │ │ │ ├── BrowserViewController+ToolBarActionMenuDelegate.swift │ │ │ │ │ ├── BrowserViewController+UIDropInteractionDelegate.swift │ │ │ │ │ ├── BrowserViewController+WebViewDelegates.swift │ │ │ │ │ └── BrowserViewController+ZoomPage.swift │ │ │ │ ├── State │ │ │ │ │ ├── BrowserNavigationType.swift │ │ │ │ │ ├── BrowserViewControllerState.swift │ │ │ │ │ ├── BrowserViewType.swift │ │ │ │ │ └── SearchScreenState.swift │ │ │ │ ├── Views │ │ │ │ │ └── BrowserViewController.swift │ │ │ │ └── WebEngineIntegration │ │ │ │ │ └── BrowserWebUIDelegate.swift │ │ │ ├── ButtonToast.swift │ │ │ ├── ClipboardBarDisplayHandler.swift │ │ │ ├── ContextMenuPreviewViewController.swift │ │ │ ├── DefaultSearchPrefs.swift │ │ │ ├── DownloadHelper │ │ │ │ ├── Download.swift │ │ │ │ ├── DownloadHelper.swift │ │ │ │ ├── DownloadLiveActivityIntent.swift │ │ │ │ ├── DownloadLiveActivityWrapper.swift │ │ │ │ ├── DownloadProgressManager.swift │ │ │ │ ├── DownloadQueue.swift │ │ │ │ ├── DownloadToast.swift │ │ │ │ └── MIMEType.swift │ │ │ ├── EnhancedTrackingProtection │ │ │ │ ├── EnhancedTrackingProtectionDetailsVC.swift │ │ │ │ ├── EnhancedTrackingProtectionDetailsVM.swift │ │ │ │ ├── EnhancedTrackingProtectionVC.swift │ │ │ │ ├── EnhancedTrackingProtectionVM.swift │ │ │ │ └── SlideoverPresentationController.swift │ │ │ ├── Event Queue │ │ │ │ ├── AppEvent.swift │ │ │ │ └── EventQueue.swift │ │ │ ├── FindInPageBar.swift │ │ │ ├── FirefoxTabContentBlocker.swift │ │ │ ├── KeyboardPressesHandler.swift │ │ │ ├── LegacyClipboardBarDisplayHandlerDelegate.swift │ │ │ ├── MailProviders.swift │ │ │ ├── MailtoLinkHandler.swift │ │ │ ├── MainMenu │ │ │ │ ├── MainMenuConfigurationUtility.swift │ │ │ │ ├── MainMenuCoordinator.swift │ │ │ │ ├── MainMenuTelemetry.swift │ │ │ │ ├── Redux │ │ │ │ │ ├── MainMenuAction.swift │ │ │ │ │ ├── MainMenuDetailState.swift │ │ │ │ │ ├── MainMenuMiddleware.swift │ │ │ │ │ ├── MainMenuState.swift │ │ │ │ │ └── MenuNavigationDestination.swift │ │ │ │ └── Views │ │ │ │ │ └── MainMenuViewController.swift │ │ │ ├── MainMenuActionHelper.swift │ │ │ ├── MetadataParserHelper.swift │ │ │ ├── OpenInHelper │ │ │ │ ├── OpenPassBookHelper.swift │ │ │ │ └── OpenQLPreviewHelper.swift │ │ │ ├── OpenWithSettingsViewController.swift │ │ │ ├── PrivateModeButton.swift │ │ │ ├── PrivilegedRequest.swift │ │ │ ├── QRCodeViewController.swift │ │ │ ├── RecordVisitObservationManager.swift │ │ │ ├── RelayController.swift │ │ │ ├── RelayMaskTelemetry.swift │ │ │ ├── ScreenshotHelper.swift │ │ │ ├── Search │ │ │ │ ├── ClientTabsSearchWrapper.swift │ │ │ │ ├── SearchListSection.swift │ │ │ │ ├── SearchViewController.swift │ │ │ │ └── SearchViewModel.swift │ │ │ ├── SearchEngines │ │ │ │ ├── OpenSearchEngine.swift │ │ │ │ ├── RecentSearchProvider.swift │ │ │ │ ├── Redux │ │ │ │ │ ├── SearchEngineModel.swift │ │ │ │ │ ├── SearchEngineSelectionAction.swift │ │ │ │ │ ├── SearchEngineSelectionMiddleware.swift │ │ │ │ │ └── SearchEngineSelectionState.swift │ │ │ │ ├── SearchEngineElement+initFromSearchEngine.swift │ │ │ │ ├── SearchEngineProvider.swift │ │ │ │ ├── SearchEngineSelectionCoordinator.swift │ │ │ │ ├── SearchEnginesManager.swift │ │ │ │ ├── TrendingSearchClient.swift │ │ │ │ └── Views │ │ │ │ │ └── SearchEngineSelectionViewController.swift │ │ │ ├── SearchLoader.swift │ │ │ ├── SearchSuggestClient.swift │ │ │ ├── SimpleToast.swift │ │ │ ├── StartAtHome │ │ │ │ ├── StartAtHomeAction.swift │ │ │ │ ├── StartAtHomeHelper.swift │ │ │ │ └── StartAtHomeMiddleware.swift │ │ │ ├── String+Punycode.swift │ │ │ ├── SwipeAnimator.swift │ │ │ ├── TabPrintPageRenderer.swift │ │ │ ├── TabScrollController │ │ │ │ ├── LegacyTabScrollController.swift │ │ │ │ ├── TabProviderAdapter.swift │ │ │ │ ├── TabScrollHandler.swift │ │ │ │ └── ToolbarViewProtocol.swift │ │ │ ├── Tabs │ │ │ │ ├── ASGroup.swift │ │ │ │ ├── Action │ │ │ │ │ ├── RemoteTabsManagerAction.swift │ │ │ │ │ ├── RemoteTabsPanelAction.swift │ │ │ │ │ ├── TabManagerAction.swift │ │ │ │ │ ├── TabPanelAction.swift │ │ │ │ │ ├── TabPeekAction.swift │ │ │ │ │ ├── TabTrayAction.swift │ │ │ │ │ └── TopTabsAction.swift │ │ │ │ ├── LayoutManager │ │ │ │ │ └── TabsSectionManager.swift │ │ │ │ ├── Middleware │ │ │ │ │ ├── RemoteTabsPanelMiddleware.swift │ │ │ │ │ └── TabManagerMiddleware.swift │ │ │ │ ├── Models │ │ │ │ │ ├── TabDisplayModel.swift │ │ │ │ │ ├── TabModel.swift │ │ │ │ │ ├── TabPeekModel.swift │ │ │ │ │ ├── TabScrollBehaviorModel.swift │ │ │ │ │ └── TabTrayModel.swift │ │ │ │ ├── State │ │ │ │ │ ├── RemoteTabsPanelState.swift │ │ │ │ │ ├── TabPeekState.swift │ │ │ │ │ ├── TabTrayPanelType.swift │ │ │ │ │ ├── TabTrayState.swift │ │ │ │ │ ├── TabViewState.swift │ │ │ │ │ └── TabsPanelState.swift │ │ │ │ ├── TabTrayUtils.swift │ │ │ │ └── Views │ │ │ │ │ ├── Animation │ │ │ │ │ ├── BasicAnimationControllerDelegate.swift │ │ │ │ │ ├── TabAnimation.swift │ │ │ │ │ ├── TabTrayPanelSwipePalette.swift │ │ │ │ │ ├── TabTrayPanelSwipeTheme.swift │ │ │ │ │ └── TabTrayThemeAnimator.swift │ │ │ │ │ ├── CustomSelectorView │ │ │ │ │ ├── TabTraySelectorButtonModel.swift │ │ │ │ │ └── TabTraySelectorView.swift │ │ │ │ │ ├── EmptyPrivateTabsView.swift │ │ │ │ │ ├── ExperimentEmptyPrivateTabsView.swift │ │ │ │ │ ├── ExperimentRemoteTabsEmptyView.swift │ │ │ │ │ ├── ExperimentTabCell.swift │ │ │ │ │ ├── InsetUpdatable.swift │ │ │ │ │ ├── RemoteTabsEmptyView.swift │ │ │ │ │ ├── RemoteTabsPanel.swift │ │ │ │ │ ├── RemoteTabsViewController.swift │ │ │ │ │ ├── TabCell.swift │ │ │ │ │ ├── TabDisplayDiffableDataSource.swift │ │ │ │ │ ├── TabDisplayPanelViewController.swift │ │ │ │ │ ├── TabDisplayView.swift │ │ │ │ │ ├── TabPeekViewController.swift │ │ │ │ │ ├── TabTitleSupplementaryView.swift │ │ │ │ │ └── TabTrayViewController.swift │ │ │ ├── TermsOfUse │ │ │ │ ├── TermsOfUseAction.swift │ │ │ │ ├── TermsOfUseCoordinator.swift │ │ │ │ ├── TermsOfUseMiddleware.swift │ │ │ │ ├── TermsOfUseState.swift │ │ │ │ ├── TermsOfUseStrings.swift │ │ │ │ ├── TermsOfUseTelemetry.swift │ │ │ │ ├── TermsOfUseTimeout.swift │ │ │ │ ├── ToUExperiencePointsCalculator.swift │ │ │ │ └── View │ │ │ │ │ ├── TermsOfUseLinkViewController.swift │ │ │ │ │ └── TermsOfUseViewController.swift │ │ │ ├── TextContentDetector.swift │ │ │ ├── ThirdPartySearchAlerts.swift │ │ │ ├── Toast.swift │ │ │ ├── ToastType.swift │ │ │ ├── Toolbars │ │ │ │ ├── AddressBarPanGestureHandler.swift │ │ │ │ ├── AddressToolbarContainer.swift │ │ │ │ ├── Autocompletable.swift │ │ │ │ ├── Models │ │ │ │ │ ├── AddressToolbarContainerModel.swift │ │ │ │ │ └── NavigationToolbarContainerModel.swift │ │ │ │ ├── NavigationToolbarContainer.swift │ │ │ │ ├── OverlayModeManager.swift │ │ │ │ ├── Redux │ │ │ │ │ ├── AddressBarState.swift │ │ │ │ │ ├── NavigationBarState.swift │ │ │ │ │ ├── ToolbarAction.swift │ │ │ │ │ ├── ToolbarActionConfiguration.swift │ │ │ │ │ ├── ToolbarMiddleware.swift │ │ │ │ │ ├── ToolbarState.swift │ │ │ │ │ └── TranslationsConfiguration.swift │ │ │ │ ├── SearchBarLocationSaver.swift │ │ │ │ ├── ToolbarHelper.swift │ │ │ │ ├── ToolbarLayoutStyle.swift │ │ │ │ └── ToolbarTelemetry.swift │ │ │ ├── TopTabCell.swift │ │ │ ├── TopTabDisplayManager.swift │ │ │ ├── TopTabFader.swift │ │ │ ├── TopTabsLayout.swift │ │ │ ├── TopTabsViewController.swift │ │ │ ├── TranslationToastHandler.swift │ │ │ ├── URIFixup.swift │ │ │ ├── WebView │ │ │ │ ├── PullRefreshView.swift │ │ │ │ ├── TemporaryDocumentLoadingView.swift │ │ │ │ ├── WebViewNavigationHandler.swift │ │ │ │ └── WebviewViewController.swift │ │ │ └── Zoom │ │ │ │ ├── ZoomLevel.swift │ │ │ │ ├── ZoomPageBar.swift │ │ │ │ ├── ZoomPageManager.swift │ │ │ │ └── ZoomTelemetry.swift │ │ ├── Components │ │ │ ├── BaseAlphaStackView.swift │ │ │ ├── ContentContainer.swift │ │ │ ├── ExpandButtonState.swift │ │ │ ├── ModalSettingsNavigationController.swift │ │ │ ├── SaveLoginAlert.swift │ │ │ ├── StatusBarOverlay.swift │ │ │ ├── SwiftUI │ │ │ │ └── AdaptiveStack.swift │ │ │ └── ThemedNavigationController.swift │ │ ├── ContextualHint │ │ │ ├── ContextualHintCopyProvider.swift │ │ │ ├── ContextualHintEligibilityUtility.swift │ │ │ ├── ContextualHintPrefsKeysProvider.swift │ │ │ ├── ContextualHintViewController.swift │ │ │ └── ContextualHintViewProvider.swift │ │ ├── DefaultBrowserOnboarding │ │ │ ├── DefaultBrowserOnboardingViewController.swift │ │ │ └── DefaultBrowserOnboardingViewModel.swift │ │ ├── DevicePickerTableViewCell.swift │ │ ├── DevicePickerTableViewHeaderCell.swift │ │ ├── DismissableNavigationViewController.swift │ │ ├── Extensions │ │ │ ├── DevicePickerViewController.swift │ │ │ └── SiriShortcuts.swift │ │ ├── FeltPrivacy │ │ │ ├── DataClearanceAnimation.swift │ │ │ ├── FeltPrivacyMiddleware.swift │ │ │ └── PrivateModeAction.swift │ │ ├── HelpView.swift │ │ ├── Home │ │ │ ├── Blurrable.swift │ │ │ ├── HomePanelType.swift │ │ │ ├── Homepage │ │ │ │ ├── Bookmark │ │ │ │ │ ├── BookmarkConfiguration.swift │ │ │ │ │ ├── BookmarksAction.swift │ │ │ │ │ ├── BookmarksCell.swift │ │ │ │ │ ├── BookmarksMiddleware.swift │ │ │ │ │ ├── BookmarksSectionState.swift │ │ │ │ │ └── LegacyBookmarksCell.swift │ │ │ │ ├── ContextMenu │ │ │ │ │ ├── ContextMenuAction.swift │ │ │ │ │ ├── ContextMenuConfiguration.swift │ │ │ │ │ ├── ContextMenuCoordinator.swift │ │ │ │ │ └── ContextMenuState.swift │ │ │ │ ├── CustomizeHome │ │ │ │ │ └── CustomizeHomepageSectionCell.swift │ │ │ │ ├── Header │ │ │ │ │ ├── HeaderState.swift │ │ │ │ │ ├── HomeLogoHeaderCell.swift │ │ │ │ │ └── HomepageHeaderCell.swift │ │ │ │ ├── HomepageDiffableDataSource.swift │ │ │ │ ├── HomepageDimensionImplementation.swift │ │ │ │ ├── HomepageUX.swift │ │ │ │ ├── HomepageViewController.swift │ │ │ │ ├── JumpBackIn │ │ │ │ │ ├── JumpBackInAction.swift │ │ │ │ │ ├── JumpBackInCell.swift │ │ │ │ │ ├── JumpBackInSectionState.swift │ │ │ │ │ ├── JumpBackInTabConfiguration.swift │ │ │ │ │ ├── LegacyJumpBackInCell.swift │ │ │ │ │ └── SyncedTabCell.swift │ │ │ │ ├── Layout │ │ │ │ │ ├── HomepageLayoutMeasurementCache.swift │ │ │ │ │ ├── HomepageSectionLayoutProvider.swift │ │ │ │ │ └── TopSitesSectionLayoutProvider.swift │ │ │ │ ├── Merino │ │ │ │ │ ├── MerinoAction.swift │ │ │ │ │ ├── MerinoManager.swift │ │ │ │ │ ├── MerinoMiddleware.swift │ │ │ │ │ ├── MerinoStandardCell.swift │ │ │ │ │ ├── MerinoState.swift │ │ │ │ │ ├── MerinoStoryConfiguration.swift │ │ │ │ │ ├── StoryCell.swift │ │ │ │ │ └── StoryProvider.swift │ │ │ │ ├── MessageCard │ │ │ │ │ ├── HomepageMessageCardCell.swift │ │ │ │ │ ├── MessageCardAction.swift │ │ │ │ │ ├── MessageCardMiddleware.swift │ │ │ │ │ └── MessageCardState.swift │ │ │ │ ├── Redux │ │ │ │ │ ├── HomepageAction.swift │ │ │ │ │ ├── HomepageMiddleware.swift │ │ │ │ │ └── HomepageState.swift │ │ │ │ ├── SearchBar │ │ │ │ │ ├── SearchBarCell.swift │ │ │ │ │ └── SearchBarState.swift │ │ │ │ ├── SectionHeader │ │ │ │ │ ├── LabelButtonHeaderView.swift │ │ │ │ │ └── SectionHeaderConfiguration.swift │ │ │ │ ├── TopSites │ │ │ │ │ ├── DataManagement │ │ │ │ │ │ ├── Contile.swift │ │ │ │ │ │ ├── ContileNetworking.swift │ │ │ │ │ │ ├── ContileProvider.swift │ │ │ │ │ │ ├── GoogleTopSiteManager.swift │ │ │ │ │ │ ├── SponsoredTileDataUtility.swift │ │ │ │ │ │ └── TopSiteHistoryManager.swift │ │ │ │ │ ├── EmptyTopSiteCell.swift │ │ │ │ │ ├── Site+createSponsoredSite.swift │ │ │ │ │ ├── TopSite.swift │ │ │ │ │ ├── TopSiteCell.swift │ │ │ │ │ ├── TopSiteConfiguration.swift │ │ │ │ │ ├── TopSitesAction.swift │ │ │ │ │ ├── TopSitesManager.swift │ │ │ │ │ ├── TopSitesMiddleware.swift │ │ │ │ │ └── TopSitesSectionState.swift │ │ │ │ └── Wallpapers │ │ │ │ │ ├── Redux │ │ │ │ │ ├── WallpaperAction.swift │ │ │ │ │ ├── WallpaperMiddleware.swift │ │ │ │ │ └── WallpaperState.swift │ │ │ │ │ ├── WallpaperBackgroundView.swift │ │ │ │ │ └── v1 │ │ │ │ │ ├── Interface │ │ │ │ │ └── WallpaperManager.swift │ │ │ │ │ ├── Models │ │ │ │ │ ├── Wallpaper.swift │ │ │ │ │ ├── WallpaperCollection.swift │ │ │ │ │ ├── WallpaperCollectionAvailability.swift │ │ │ │ │ ├── WallpaperCollectionType.swift │ │ │ │ │ └── WallpaperMetadata.swift │ │ │ │ │ ├── NetworkServices │ │ │ │ │ ├── WallpaperDataService.swift │ │ │ │ │ ├── WallpaperImageLoader.swift │ │ │ │ │ ├── WallpaperMetadataLoader.swift │ │ │ │ │ └── WallpaperNetworkModule.swift │ │ │ │ │ ├── Protocols │ │ │ │ │ ├── WallpaperMetadataCodableProtocol.swift │ │ │ │ │ └── WallpaperNetworking.swift │ │ │ │ │ ├── UI │ │ │ │ │ ├── LegacyWallpaperBackgroundView.swift │ │ │ │ │ ├── WallpaperCellViewModel.swift │ │ │ │ │ ├── WallpaperCollectionViewCell.swift │ │ │ │ │ ├── WallpaperSelectorViewController.swift │ │ │ │ │ └── WallpaperSelectorViewModel.swift │ │ │ │ │ └── Utilities │ │ │ │ │ ├── WallpaperFilePathProvider.swift │ │ │ │ │ ├── WallpaperMetadataUtility.swift │ │ │ │ │ ├── WallpaperMigrationUtility.swift │ │ │ │ │ ├── WallpaperStorageUtility.swift │ │ │ │ │ ├── WallpaperThumbnailUtility.swift │ │ │ │ │ └── WallpaperURLProvider.swift │ │ │ ├── HomepageHeroImageViewModel.swift │ │ │ ├── PrivateHome │ │ │ │ ├── PrivateHomepageViewController.swift │ │ │ │ └── PrivateMessageCardCell.swift │ │ │ └── UnifiedAds │ │ │ │ ├── UnifiedAdsCallbackTelemetry.swift │ │ │ │ ├── UnifiedAdsConverter.swift │ │ │ │ ├── UnifiedAdsProvider.swift │ │ │ │ └── UnifiedTile.swift │ │ ├── HostingTableViewCell.swift │ │ ├── HostingTableViewSectionHeader.swift │ │ ├── InstructionsView.swift │ │ ├── InternalSchemeHandler │ │ │ ├── AboutHomeHandler.swift │ │ │ ├── ErrorPageHelper.swift │ │ │ └── InternalSchemeHandler.swift │ │ ├── Library │ │ │ ├── Bookmarks │ │ │ │ ├── BookmarksFolderEmptyStateView.swift │ │ │ │ ├── BookmarksTelemetry.swift │ │ │ │ ├── BookmarksViewController.swift │ │ │ │ ├── Edit Bookmark │ │ │ │ │ ├── EditBookmarkCell.swift │ │ │ │ │ ├── EditBookmarkDiffableDataSource.swift │ │ │ │ │ ├── EditBookmarkViewController.swift │ │ │ │ │ └── EditBookmarkViewModel.swift │ │ │ │ ├── Edit Folder │ │ │ │ │ ├── EditFolderCell.swift │ │ │ │ │ ├── EditFolderViewController.swift │ │ │ │ │ └── EditFolderViewModel.swift │ │ │ │ ├── Legacy │ │ │ │ │ ├── BookmarksFolderCell.swift │ │ │ │ │ ├── BookmarksPanelViewModel.swift │ │ │ │ │ ├── FxBookmarkNode.swift │ │ │ │ │ ├── LocalDesktopFolder.swift │ │ │ │ │ └── SeparatorTableViewCell.swift │ │ │ │ └── Utitlity │ │ │ │ │ ├── BookmarksSaver.swift │ │ │ │ │ └── FolderHierarchyFetcher.swift │ │ │ ├── ClearHistorySheetProvider.swift │ │ │ ├── Downloads │ │ │ │ ├── DownloadFileFetcher.swift │ │ │ │ ├── DownloadedFile.swift │ │ │ │ ├── DownloadsPanel.swift │ │ │ │ └── DownloadsPanelViewModel.swift │ │ │ ├── HistoryPanel │ │ │ │ ├── HistoryActionables.swift │ │ │ │ ├── HistoryPanel+Search.swift │ │ │ │ ├── HistoryPanel.swift │ │ │ │ └── HistoryPanelViewModel.swift │ │ │ ├── HistoryTelemetry.swift │ │ │ ├── LibraryPanelContextMenu.swift │ │ │ ├── LibraryPanelDescriptor.swift │ │ │ ├── LibraryPanelHelper.swift │ │ │ ├── LibraryViewController │ │ │ │ ├── LibraryPanelViewState.swift │ │ │ │ ├── LibraryViewController+LibraryPanelDelegate.swift │ │ │ │ ├── LibraryViewController.swift │ │ │ │ ├── LibraryViewModel.swift │ │ │ │ └── TestableUIToolbar.swift │ │ │ ├── Reader │ │ │ │ ├── ReaderPanel.swift │ │ │ │ └── ReaderPanelEmptyStateView.swift │ │ │ └── RecentlyClosedTabsPanel.swift │ │ ├── LottieFiles │ │ │ ├── DataClearanceAnimation │ │ │ │ ├── gradient.json │ │ │ │ ├── landscape.json │ │ │ │ ├── portrait.json │ │ │ │ └── wave.json │ │ │ └── SplashScreenAnimation │ │ │ │ └── splashScreen.json │ │ ├── Microsurvey │ │ │ ├── MicrosurveyModel.swift │ │ │ ├── MicrosurveySurfaceManager.swift │ │ │ ├── MicrosurveyTelemetry.swift │ │ │ ├── Prompt │ │ │ │ ├── MicrosurveyPromptAction.swift │ │ │ │ ├── MicrosurveyPromptMiddleware.swift │ │ │ │ ├── MicrosurveyPromptState.swift │ │ │ │ └── MicrosurveyPromptView.swift │ │ │ └── Survey │ │ │ │ ├── MicrosurveyAction.swift │ │ │ │ ├── MicrosurveyCoordinator.swift │ │ │ │ ├── MicrosurveyMiddleware.swift │ │ │ │ ├── MicrosurveyState.swift │ │ │ │ └── View │ │ │ │ ├── MicrosurveyConfirmationView.swift │ │ │ │ ├── MicrosurveyTableHeaderView.swift │ │ │ │ ├── MicrosurveyTableView.swift │ │ │ │ ├── MicrosurveyTableViewCell.swift │ │ │ │ └── MicrosurveyViewController.swift │ │ ├── NativeErrorPage │ │ │ ├── NativeErrorPageAction.swift │ │ │ ├── NativeErrorPageFeatureFlag.swift │ │ │ ├── NativeErrorPageHelper.swift │ │ │ ├── NativeErrorPageMiddleware.swift │ │ │ ├── NativeErrorPageModel.swift │ │ │ ├── NativeErrorPageState.swift │ │ │ └── NativeErrorPageViewController.swift │ │ ├── NotificationSurface │ │ │ └── NotificationSurfaceManager.swift │ │ ├── Onboarding │ │ │ ├── Models │ │ │ │ ├── IntroViewModel.swift │ │ │ │ ├── OnboardingKitCardInfoModel.swift │ │ │ │ ├── OnboardingKitViewModel.swift │ │ │ │ ├── OnboardingMultipleChoiceButtonViewModel.swift │ │ │ │ ├── OnboardingTelemetryUtility.swift │ │ │ │ ├── TermsOfServiceTelemetry.swift │ │ │ │ └── UpdateViewModel.swift │ │ │ ├── Protocols │ │ │ │ ├── ActivityEventHelper.swift │ │ │ │ ├── OnboardingCardDelegate.swift │ │ │ │ ├── OnboardingCardViewController.swift │ │ │ │ ├── OnboardingMultipleChoiceSelectionDelegate.swift │ │ │ │ ├── OnboardingNavigationDelegate.swift │ │ │ │ ├── OnboardingService.swift │ │ │ │ ├── OnboardingServiceDelegate.swift │ │ │ │ ├── OnboardingTelemetryProtocol.swift │ │ │ │ ├── OnboardingViewControllerProtocol.swift │ │ │ │ └── OnboardingViewModelProtocol.swift │ │ │ ├── State │ │ │ │ └── OnboardingViewControllerState.swift │ │ │ └── Views │ │ │ │ ├── IntroViewController.swift │ │ │ │ ├── OnboardingBasicCardViewController.swift │ │ │ │ ├── OnboardingInstructionPopupViewController.swift │ │ │ │ ├── OnboardingMultipleChoiceButtonView.swift │ │ │ │ ├── OnboardingMultipleChoiceCardViewController.swift │ │ │ │ ├── PrivacyPolicyViewController.swift │ │ │ │ ├── PrivacyPreferencesViewController.swift │ │ │ │ ├── SwitchDetailedView.swift │ │ │ │ ├── TermsOfServiceViewController.swift │ │ │ │ └── UpdateViewController.swift │ │ ├── PasswordGenerator │ │ │ ├── GeneratedPasswordStorage.swift │ │ │ ├── PasswordGeneratorAction.swift │ │ │ ├── PasswordGeneratorMiddleware.swift │ │ │ ├── PasswordGeneratorState.swift │ │ │ ├── PasswordGeneratorTelemetry.swift │ │ │ ├── PasswordGeneratorViewController.swift │ │ │ └── View │ │ │ │ ├── PasswordGeneratorHeaderView.swift │ │ │ │ └── PasswordGeneratorPasswordFieldView.swift │ │ ├── PasswordManagement │ │ │ ├── AddCredentialViewController.swift │ │ │ ├── BreachAlertsClient.swift │ │ │ ├── BreachAlertsDetailView.swift │ │ │ ├── BreachAlertsManager.swift │ │ │ ├── Cells │ │ │ │ ├── LoginDetailCenteredTableViewCell.swift │ │ │ │ ├── LoginDetailTableViewCell.swift │ │ │ │ └── PasswordManagerTableViewCell.swift │ │ │ ├── DevicePasscodeRequiredViewController.swift │ │ │ ├── LoginDataSource.swift │ │ │ ├── LoginOnboarding.swift │ │ │ ├── NoLoginsView.swift │ │ │ ├── PasswordDetailViewControllerModel.swift │ │ │ ├── PasswordManagerDataSourceHelper.swift │ │ │ ├── PasswordManagerListViewController.swift │ │ │ ├── PasswordManagerOnboardingViewController.swift │ │ │ ├── PasswordManagerSelectionHelper.swift │ │ │ └── PasswordManagerViewModel.swift │ │ ├── Reader │ │ │ ├── ReadabilityService.swift │ │ │ ├── ReaderMode.swift │ │ │ ├── ReaderModeHandlers.swift │ │ │ ├── Resources │ │ │ │ ├── FSReadingList.h │ │ │ │ ├── FSReadingList.m │ │ │ │ ├── Reader.css │ │ │ │ ├── Reader.html │ │ │ │ └── ReaderViewLoading.html │ │ │ └── View │ │ │ │ ├── ReaderModeBarView.swift │ │ │ │ ├── ReaderModeFontSizeButton.swift │ │ │ │ ├── ReaderModeFontTypeButton.swift │ │ │ │ ├── ReaderModeSettingsButton.swift │ │ │ │ ├── ReaderModeStyleViewController.swift │ │ │ │ ├── ReaderModeStyleViewModel.swift │ │ │ │ └── ReaderModeThemeButton.swift │ │ ├── Settings │ │ │ ├── AdvancedAccountSettingViewController.swift │ │ │ ├── AppIconSelection │ │ │ │ ├── AppIcon.swift │ │ │ │ ├── AppIconSelectionTelemetry.swift │ │ │ │ ├── AppIconSelectionView.swift │ │ │ │ └── AppIconView.swift │ │ │ ├── AppearanceSettings │ │ │ │ ├── AddressBarSelectionView.swift │ │ │ │ ├── AddressBarSettingsView.swift │ │ │ │ ├── AppearanceSettingsView.swift │ │ │ │ ├── DarkModeToggleView.swift │ │ │ │ ├── Generic views │ │ │ │ │ ├── GenericButtonCellView.swift │ │ │ │ │ ├── GenericItemCellView.swift │ │ │ │ │ ├── GenericSectionHeaderView.swift │ │ │ │ │ ├── GenericSectionView.swift │ │ │ │ │ └── GenericSelectableItemCellView.swift │ │ │ │ ├── GenericImageOption.swift │ │ │ │ ├── NavigationBarMiddleButtonSelectionView.swift │ │ │ │ ├── StylingViewModifiers.swift │ │ │ │ ├── ThemeOptionView.swift │ │ │ │ ├── ThemeSelectionView.swift │ │ │ │ └── Zoom │ │ │ │ │ ├── PageZoomSettingView.swift │ │ │ │ │ ├── PageZoomSettingsViewModel.swift │ │ │ │ │ ├── ZoomLevelCellView.swift │ │ │ │ │ ├── ZoomLevelPickerView.swift │ │ │ │ │ └── ZoomSiteListView.swift │ │ │ ├── AutoFillPasswordSettingsViewController.swift │ │ │ ├── AutoplaySettingsViewController.swift │ │ │ ├── BrowsingSettingsViewController.swift │ │ │ ├── ClearPrivateDataTableViewController.swift │ │ │ ├── Clearables.swift │ │ │ ├── ContentBlockerSettingViewController.swift │ │ │ ├── CustomSearchViewController.swift │ │ │ ├── FirefoxSuggestSettingsViewController.swift │ │ │ ├── HomepageSettings │ │ │ │ ├── HomePageSettingViewController.swift │ │ │ │ ├── TopSitesSettings │ │ │ │ │ ├── TopSitesRowCountSettingsController.swift │ │ │ │ │ └── TopSitesSettingsViewController.swift │ │ │ │ └── WallpaperSettings │ │ │ │ │ └── v1 │ │ │ │ │ ├── WallpaperBaseViewController.swift │ │ │ │ │ ├── WallpaperSettingsHeaderView.swift │ │ │ │ │ ├── WallpaperSettingsViewController.swift │ │ │ │ │ └── WallpaperSettingsViewModel.swift │ │ │ ├── Main │ │ │ │ ├── About │ │ │ │ │ ├── AboutSettingsDelegate.swift │ │ │ │ │ ├── AppStoreReviewSetting.swift │ │ │ │ │ ├── LicenseAndAcknowledgementsSetting.swift │ │ │ │ │ ├── VersionSetting.swift │ │ │ │ │ └── YourRightsSetting.swift │ │ │ │ ├── Account │ │ │ │ │ ├── AccountSettingsDelegate.swift │ │ │ │ │ ├── AccountStatusSetting.swift │ │ │ │ │ ├── AdvancedAccountSettings.swift │ │ │ │ │ ├── ChinaSyncServiceSetting.swift │ │ │ │ │ ├── ConnectSetting.swift │ │ │ │ │ └── SyncNowSetting.swift │ │ │ │ ├── AppSettingsTableViewController.swift │ │ │ │ ├── Debug │ │ │ │ │ ├── AddShortcutsSetting.swift │ │ │ │ │ ├── AppDataUsageReportSetting.swift │ │ │ │ │ ├── AppReviewPromptSetting.swift │ │ │ │ │ ├── ChangeRSServerSetting.swift │ │ │ │ │ ├── ChangeToChinaSetting.swift │ │ │ │ │ ├── DebugSettingsDelegate.swift │ │ │ │ │ ├── DeleteAutofillKeysSetting.swift │ │ │ │ │ ├── DeleteExportedDataSetting.swift │ │ │ │ │ ├── DeleteLoginsKeysSetting.swift │ │ │ │ │ ├── ExperimentsSettings.swift │ │ │ │ │ ├── ExportBrowserDataSetting.swift │ │ │ │ │ ├── ExportLogDataSetting.swift │ │ │ │ │ ├── FeatureFlags │ │ │ │ │ │ ├── FeatureFlagsBoolSetting.swift │ │ │ │ │ │ ├── FeatureFlagsDebugViewController.swift │ │ │ │ │ │ └── FeatureFlagsSettings.swift │ │ │ │ │ ├── FirefoxSuggestSettings.swift │ │ │ │ │ ├── ForceCrashSetting.swift │ │ │ │ │ ├── ForceRSSyncSetting.swift │ │ │ │ │ ├── HiddenSettings.swift │ │ │ │ │ ├── MerinoTestDataSetting.swift │ │ │ │ │ ├── OpenFiftyTabsDebugOption.swift │ │ │ │ │ ├── Performance │ │ │ │ │ │ └── BenchmarkSteps.swift │ │ │ │ │ ├── PopupHTMLSetting.swift │ │ │ │ │ ├── ResetContextualHints.swift │ │ │ │ │ ├── ResetSearchEnginePrefsSetting.swift │ │ │ │ │ ├── ResetTermsOfServiceAcceptancePage.swift │ │ │ │ │ ├── ResetWallpaperOnboardingPage.swift │ │ │ │ │ ├── ScreenshotSetting.swift │ │ │ │ │ └── SentryIDSetting.swift │ │ │ │ ├── DefaultBrowserSetting.swift │ │ │ │ ├── General │ │ │ │ │ ├── AppIconSetting.swift │ │ │ │ │ ├── AutoplaySetting.swift │ │ │ │ │ ├── BlockPopupSetting.swift │ │ │ │ │ ├── BrowsingSetting.swift │ │ │ │ │ ├── GeneralSettingsDelegate.swift │ │ │ │ │ ├── HomeSetting.swift │ │ │ │ │ ├── NewTabPageSetting.swift │ │ │ │ │ ├── NoImageModeSetting.swift │ │ │ │ │ ├── OpenWithSetting.swift │ │ │ │ │ ├── SearchBarSetting.swift │ │ │ │ │ ├── SearchSetting.swift │ │ │ │ │ ├── SiriPageSetting.swift │ │ │ │ │ ├── SummarizeSetting.swift │ │ │ │ │ ├── ThemeSetting.swift │ │ │ │ │ └── TranslationSetting.swift │ │ │ │ ├── Privacy │ │ │ │ │ ├── AddressAutofillSetting.swift │ │ │ │ │ ├── AutofillCreditCardSettings.swift │ │ │ │ │ ├── AutofillPasswordSetting.swift │ │ │ │ │ ├── AutofillRelayMaskSetting.swift │ │ │ │ │ ├── ClearPrivateDataSetting.swift │ │ │ │ │ ├── ContentBlockerSetting.swift │ │ │ │ │ ├── NotificationsSetting.swift │ │ │ │ │ ├── PasswordManagerSetting.swift │ │ │ │ │ ├── PrivacyPolicySetting.swift │ │ │ │ │ └── PrivacySettingsDelegate.swift │ │ │ │ ├── SettingDisclosureUtility.swift │ │ │ │ ├── SharedSettingsDelegate.swift │ │ │ │ └── Support │ │ │ │ │ ├── OpenSupportPageSetting.swift │ │ │ │ │ ├── SendDataSetting.swift │ │ │ │ │ ├── SendFeedbackSetting.swift │ │ │ │ │ ├── SentFromFirefoxSetting.swift │ │ │ │ │ ├── ShowIntroductionSetting.swift │ │ │ │ │ ├── StudiesToggleSetting.swift │ │ │ │ │ └── SupportSettingsDelegate.swift │ │ │ ├── NewTabContentSettingsViewController.swift │ │ │ ├── NotificationsSettingsViewController.swift │ │ │ ├── PasswordDetailViewController.swift │ │ │ ├── RelayMaskSettingsViewController.swift │ │ │ ├── SearchBar │ │ │ │ ├── SearchBarSettingsViewController.swift │ │ │ │ └── SearchBarSettingsViewModel.swift │ │ │ ├── SearchEnginePicker.swift │ │ │ ├── SearchSettingsTableViewController.swift │ │ │ ├── SettingsContentViewController.swift │ │ │ ├── SettingsLoadingView.swift │ │ │ ├── SettingsNavigationController.swift │ │ │ ├── SettingsTableViewController.swift │ │ │ ├── SettingsTelemetry.swift │ │ │ ├── SettingsViewController.swift │ │ │ ├── SiriSettingsViewController.swift │ │ │ ├── Summarize │ │ │ │ └── SummarizeSettingsViewController.swift │ │ │ ├── SyncContentSettingsViewController.swift │ │ │ ├── TPAccessoryInfo.swift │ │ │ ├── ThemeSettings │ │ │ │ ├── ThemeMiddleware.swift │ │ │ │ ├── ThemeSettingsAction.swift │ │ │ │ ├── ThemeSettingsController.swift │ │ │ │ └── ThemeSettingsState.swift │ │ │ ├── Translation │ │ │ │ └── TranslationSettingsViewController.swift │ │ │ └── WebsiteDataManagement │ │ │ │ ├── WebsiteDataManagementViewController.swift │ │ │ │ ├── WebsiteDataManagementViewModel.swift │ │ │ │ └── WebsiteDataSearchResultsViewController.swift │ │ ├── Share │ │ │ ├── CustomAppActivity.swift │ │ │ ├── HomePageActivity.swift │ │ │ ├── SendToDeviceActivity.swift │ │ │ ├── SendToDeviceHelper.swift │ │ │ ├── ShareManager.swift │ │ │ ├── ShareMessage.swift │ │ │ ├── ShareTab.swift │ │ │ ├── ShareTelemetry.swift │ │ │ ├── ShareTelemetryActivityItemProvider.swift │ │ │ ├── ShareType.swift │ │ │ ├── TitleActivityItemProvider.swift │ │ │ ├── TitleSubtitleActivityItemProvider.swift │ │ │ └── URLActivityItemProvider.swift │ │ ├── ShortcutsLibrary │ │ │ ├── Redux │ │ │ │ ├── ShortcutsLibraryAction.swift │ │ │ │ ├── ShortcutsLibraryMiddleware.swift │ │ │ │ └── ShortcutsLibraryState.swift │ │ │ ├── ShortcutsLibraryDiffableDataSource.swift │ │ │ └── ShortcutsLibraryViewController.swift │ │ ├── StoriesFeed │ │ │ ├── Redux │ │ │ │ ├── StoriesFeedAction.swift │ │ │ │ └── StoriesFeedState.swift │ │ │ ├── StoriesFeedCell.swift │ │ │ ├── StoriesFeedDiffableDataSource.swift │ │ │ ├── StoriesFeedDimensionCalculator.swift │ │ │ ├── StoriesFeedSectionLayoutProvider.swift │ │ │ ├── StoriesFeedTelemetry.swift │ │ │ ├── StoriesFeedViewController.swift │ │ │ └── StoriesWebviewViewController.swift │ │ ├── Summarizer │ │ │ ├── RemoteSummarizerConfigSource.swift │ │ │ ├── SummarizeAction.swift │ │ │ ├── SummarizeMiddleware.swift │ │ │ ├── SummarizerConfigManager.swift │ │ │ ├── SummarizerNimbusUtils.swift │ │ │ └── SummarizerTelemetry.swift │ │ ├── SurveySurface │ │ │ ├── SurveySurfaceInfoModel.swift │ │ │ ├── SurveySurfaceManager.swift │ │ │ ├── SurveySurfaceViewController.swift │ │ │ └── SurveySurfaceViewModel.swift │ │ ├── TabContentsScripts │ │ │ ├── ContextMenuHelper.swift │ │ │ ├── DownloadContentScript.swift │ │ │ ├── FindInPageHelper.swift │ │ │ ├── FocusHelper.swift │ │ │ ├── FormAutofillHelper │ │ │ │ ├── AddressFormData.swift │ │ │ │ ├── CreditCardPayload.swift │ │ │ │ ├── FillAddressAutofillForm.swift │ │ │ │ ├── FillCreditCardForm.swift │ │ │ │ ├── FormAutofillHelper.swift │ │ │ │ ├── FormAutofillHelperError.swift │ │ │ │ └── FormAutofillPayloadType.swift │ │ │ ├── LocalRequestHelper.swift │ │ │ ├── LoginsHelper.swift │ │ │ ├── NightModeHelper.swift │ │ │ ├── NoImageModeHelper.swift │ │ │ ├── PrintHelper.swift │ │ │ └── UserScriptManager.swift │ │ ├── TabToolbar │ │ │ └── ToolbarTextField.swift │ │ ├── Theme │ │ │ ├── PrivateModeUI.swift │ │ │ ├── ThemedTableSectionHeaderFooterView.swift │ │ │ ├── ThemedTableViewCells │ │ │ │ ├── ThemedCenteredTableViewCell.swift │ │ │ │ ├── ThemedLearnMoreTableViewCell.swift │ │ │ │ ├── ThemedLeftAlignedTableViewCell.swift │ │ │ │ ├── ThemedSubtitleTableViewCell.swift │ │ │ │ ├── ThemedTableViewCell.swift │ │ │ │ └── ThemedTableViewCellViewModel.swift │ │ │ └── ThemedTableViewController.swift │ │ ├── TrackingProtection │ │ │ ├── BlockedTrackersHelpers │ │ │ │ ├── BlockedTrackerCell.swift │ │ │ │ ├── BlockedTrackersHeaderView.swift │ │ │ │ ├── BlockedTrackersModel.swift │ │ │ │ └── BlockedTrackersTableView.swift │ │ │ ├── BlockedTrackersTableController.swift │ │ │ ├── CertificatesHelpers │ │ │ │ ├── CertificatesCell.swift │ │ │ │ ├── CertificatesHandler.swift │ │ │ │ ├── CertificatesHeaderItem.swift │ │ │ │ ├── CertificatesHeaderView.swift │ │ │ │ └── CertificatesModel.swift │ │ │ ├── CertificatesViewController.swift │ │ │ ├── TrackigProtectionRedux │ │ │ │ ├── TrackingProtectionAction.swift │ │ │ │ ├── TrackingProtectionMiddleware.swift │ │ │ │ ├── TrackingProtectionModel.swift │ │ │ │ └── TrackingProtectionState.swift │ │ │ ├── TrackingDetailsHelpers │ │ │ │ ├── TrackingProtectionStatusView.swift │ │ │ │ └── TrackingProtectionVerifiedByView.swift │ │ │ ├── TrackingProtectionDetailsViewController.swift │ │ │ ├── TrackingProtectionHelpers │ │ │ │ ├── TrackingProtectionBlockedTrackersView.swift │ │ │ │ ├── TrackingProtectionButton.swift │ │ │ │ ├── TrackingProtectionConnectionDetailsView.swift │ │ │ │ ├── TrackingProtectionConnectionStatusView.swift │ │ │ │ └── TrackingProtectionToggleView.swift │ │ │ ├── TrackingProtectionTelemetry.swift │ │ │ └── TrackingProtectionViewController.swift │ │ ├── Translations │ │ │ ├── Engine │ │ │ │ ├── Bridge.swift │ │ │ │ ├── BridgeEndpoint.swift │ │ │ │ ├── TranslationsEngine.swift │ │ │ │ └── WebViewBridgeEndpoint.swift │ │ │ ├── LanguageDetector │ │ │ │ ├── LanguageDetector.swift │ │ │ │ ├── LanguageSampleSource.swift │ │ │ │ └── WebViewLanguageSampleSource.swift │ │ │ ├── SchemeHandler │ │ │ │ ├── ModelsBufferRoute.swift │ │ │ │ ├── ModelsRoute.swift │ │ │ │ ├── StaticFileRoute.swift │ │ │ │ ├── TranslationsSchemeHandler.swift │ │ │ │ └── TranslatorRoute.swift │ │ │ ├── Service │ │ │ │ ├── TranslationsService.swift │ │ │ │ ├── TranslationsServiceError.swift │ │ │ │ └── TranslationsServiceProtocol.swift │ │ │ ├── TinyRouter │ │ │ │ ├── TinyHTTPReply.swift │ │ │ │ ├── TinyRouteProtocol.swift │ │ │ │ ├── TinyRouter.swift │ │ │ │ └── TinyRouterError.swift │ │ │ ├── TranslationsAction.swift │ │ │ ├── TranslationsMiddleware.swift │ │ │ └── TranslationsTelemetry.swift │ │ ├── UIConstants+BottomInset.swift │ │ ├── UIConstants.swift │ │ ├── UXSizeClass.swift │ │ ├── UserContent │ │ │ └── UserScripts │ │ │ │ ├── AddressFormManager │ │ │ │ ├── AddressFormManager.css │ │ │ │ ├── AddressFormManager.html │ │ │ │ └── AddressFormManager.mjs │ │ │ │ ├── AllFrames │ │ │ │ ├── AtDocumentEnd │ │ │ │ │ ├── Ads.js │ │ │ │ │ ├── FocusHelper.js │ │ │ │ │ ├── PrintHandler.js │ │ │ │ │ └── __firefox__.js │ │ │ │ ├── AtDocumentStart │ │ │ │ │ ├── ContextMenu.js │ │ │ │ │ ├── DownloadHelper.js │ │ │ │ │ ├── LoginsHelper.js │ │ │ │ │ ├── NoImageModeHelper.js │ │ │ │ │ ├── TrackingProtectionStats.js │ │ │ │ │ └── __firefox__.js │ │ │ │ ├── AutofillAtDocumentStart │ │ │ │ │ └── FormAutofillHelper.js │ │ │ │ ├── NightModeAtDocumentStart │ │ │ │ │ ├── DarkReader.js │ │ │ │ │ ├── NightModeHelper.js │ │ │ │ │ └── __firefox__.js │ │ │ │ └── WebcompatAtDocumentStart │ │ │ │ │ ├── FullscreenHelper.js │ │ │ │ │ └── PopupHelper.js │ │ │ │ ├── MainFrame │ │ │ │ ├── AtDocumentEnd │ │ │ │ │ ├── CustomSearchHandler.js │ │ │ │ │ ├── ErrorPage.js │ │ │ │ │ ├── FindInPage.js │ │ │ │ │ └── MetadataHelper.js │ │ │ │ └── AtDocumentStart │ │ │ │ │ ├── JSONLD.js │ │ │ │ │ ├── LanguageSampleExtractor.js │ │ │ │ │ ├── ReaderMode.js │ │ │ │ │ ├── ReaderModeStyles.js │ │ │ │ │ ├── Summarizer.js │ │ │ │ │ └── TranslationsEntrypoint.js │ │ │ │ └── TranslationsEngine │ │ │ │ ├── TranslationsEngine.html │ │ │ │ └── TranslationsEngine.js │ │ └── Widgets │ │ │ ├── AutocompleteTextField.swift │ │ │ ├── GradientProgressBar.swift │ │ │ ├── InsetButton.swift │ │ │ ├── OneLineTableViewCell.swift │ │ │ ├── PhotonActionSheet │ │ │ ├── PhotonActionSheet.swift │ │ │ ├── PhotonActionSheetAnimator.swift │ │ │ ├── PhotonActionSheetContainerCell.swift │ │ │ ├── PhotonActionSheetLineSeparator.swift │ │ │ ├── PhotonActionSheetProtocol.swift │ │ │ ├── PhotonActionSheetSeparator.swift │ │ │ ├── PhotonActionSheetSiteHeaderView.swift │ │ │ ├── PhotonActionSheetTitleHeaderView.swift │ │ │ ├── PhotonActionSheetView.swift │ │ │ ├── PhotonActionSheetViewModel.swift │ │ │ └── SingleActionViewModel.swift │ │ │ ├── PrivateModeButton.swift │ │ │ ├── SiteTableViewController.swift │ │ │ ├── SiteTableViewHeader.swift │ │ │ ├── TextFieldTableViewCell.swift │ │ │ ├── ToggleButton.swift │ │ │ ├── ToolbarBadge.swift │ │ │ └── TwoLineImageOverlayCell.swift │ ├── GeneralizedImageFetcher.swift │ ├── Glean │ │ ├── gleanProbes.xcfilelist │ │ ├── glean_index.yaml │ │ ├── pings.yaml │ │ ├── probes │ │ │ ├── ai.summarizer.yaml │ │ │ ├── ai.translations.yaml │ │ │ ├── app_icon.yaml │ │ │ ├── app_menu.yaml │ │ │ ├── autofill.addresses.yaml │ │ │ ├── autofill.credit_cards.yaml │ │ │ ├── autofill.email_mask.yaml │ │ │ ├── autofill.password_generator.yaml │ │ │ ├── autofill.passwords.yaml │ │ │ ├── history.yaml │ │ │ ├── homepage.shortcuts_library.yaml │ │ │ ├── homepage.stories_feed.yaml │ │ │ ├── library.bookmarks_panel.yaml │ │ │ ├── library.downloads_panel.yaml │ │ │ ├── library.history_panel.yaml │ │ │ ├── library.reading_list_panel.yaml │ │ │ ├── metrics.yaml │ │ │ ├── microsurvey.yaml │ │ │ ├── onboarding.yaml │ │ │ ├── search.yaml │ │ │ ├── settings.yaml │ │ │ ├── share.open_in_firefox_extension.yaml │ │ │ ├── share_sheet.yaml │ │ │ ├── tabs_panel.yaml │ │ │ ├── terms_of_use.yaml │ │ │ ├── toast.yaml │ │ │ ├── toolbar.yaml │ │ │ ├── tracking_protection.yaml │ │ │ ├── user.yaml │ │ │ └── zoom_bar.yaml │ │ └── tags.yaml │ ├── Helpers │ │ ├── MenuBuilderHelper.swift │ │ └── UserActivityHandler.swift │ ├── Info.plist │ ├── IntroScreenManager.swift │ ├── MailSchemes.plist │ ├── Nimbus │ │ ├── NimbusFeatureFlagLayer.swift │ │ ├── NimbusFirefoxSuggestFeatureLayer.swift │ │ ├── NimbusManager.swift │ │ ├── NimbusSearchBarLayer.swift │ │ ├── NimbusSplashScreenFeatureLayer.swift │ │ ├── OnboardingFeatureLayer │ │ │ ├── NimbusOnboardingFeatureLayer.swift │ │ │ ├── NimbusOnboardingFeatureLayerProtocol.swift │ │ │ └── NimbusOnboardingKitFeatureLayer.swift │ │ └── TestData │ │ │ ├── defaultEnabledOff.json │ │ │ ├── defaultEnabledOn.json │ │ │ ├── engagementNotificationWithoutConditions.json │ │ │ ├── feltPrivacySimplifiedUIOff.json │ │ │ ├── feltPrivacySimplifiedUIOn.json │ │ │ ├── homepageRedesignOff.json │ │ │ ├── homepageSearchBarOff.json │ │ │ ├── homepageSearchBarOn.json │ │ │ ├── reportSiteIssueOff.json │ │ │ ├── storiesRedesignOff.json │ │ │ ├── storiesRedesignOn.json │ │ │ ├── swipingTabsOff.json │ │ │ └── swipingTabsOn.json │ ├── NotificationManager.swift │ ├── OnboardingNotificationCardHelper.swift │ ├── PrivacyWindowHelper.swift │ ├── ProfilePrefsReader.swift │ ├── Protocols │ │ ├── AppVersionUpdateCheckerProtocol.swift │ │ ├── ApplicationStateProvider.swift │ │ ├── CanRemoveQuickActionBookmark.swift │ │ ├── DataObserver.swift │ │ ├── NavigationController.swift │ │ ├── Presenter.swift │ │ ├── TopBottomInterchangeable.swift │ │ ├── UIDeviceInterface.swift │ │ └── URLSession │ │ │ ├── URLSessionDataTaskProtocol.swift │ │ │ └── URLSessionProtocol.swift │ ├── RatingPromptManager.swift │ ├── Redux │ │ └── GlobalState │ │ │ ├── ActiveScreenAction.swift │ │ │ ├── ActiveScreenState.swift │ │ │ ├── AppState.swift │ │ │ └── ScreenState.swift │ ├── TabManagement │ │ ├── BackForwardList.swift │ │ ├── Document │ │ │ ├── DocumentLogger.swift │ │ │ ├── TemporaryDocument.swift │ │ │ └── TemporaryDocumentBackForwardListItem.swift │ │ ├── GlobalTabEventHandlers.swift │ │ ├── Tab+ChangeUserAgent.swift │ │ ├── Tab.swift │ │ ├── TabConfigurationProvider.swift │ │ ├── TabEventHandler.swift │ │ ├── TabManager.swift │ │ ├── TabManagerDelegate.swift │ │ ├── TabManagerImplementation.swift │ │ ├── TabWebViewPreview.swift │ │ ├── TabWebViewPreviewAppearanceConfiguration.swift │ │ └── WindowSimpleTabsCoordinator.swift │ ├── Telemetry │ │ ├── ActionExtensionTelemetry.swift │ │ ├── AdsTelemetryHelper.swift │ │ ├── AppStartupTelemetry.swift │ │ ├── AutoplaySettingTelemetry.swift │ │ ├── ContextMenuTelemetry.swift │ │ ├── FxSuggestTelemetry.swift │ │ ├── GleanUsageReporting.swift │ │ ├── GleanWrapper.swift │ │ ├── HistoryDeletionUtilityTelemetry.swift │ │ ├── HomepageTelemetry.swift │ │ ├── MetricKit │ │ │ └── MetricKitWrapper.swift │ │ ├── NotificationManagerTelemetry.swift │ │ ├── PrivateBrowsingTelemetry.swift │ │ ├── ReferringPage.swift │ │ ├── SearchTelemetry.swift │ │ ├── ShortcutsLibraryTelemetry.swift │ │ ├── SponsoredTileTelemetry.swift │ │ ├── TabErrorTelemetryHelper.swift │ │ ├── TabsPanelTelemetry.swift │ │ ├── TabsTelemetry.swift │ │ ├── TelemetryContextualIdentifier.swift │ │ ├── TelemetryWrapper.swift │ │ ├── ToastTelemetry.swift │ │ ├── UserTelemetry.swift │ │ ├── WebviewTelemetry.swift │ │ └── Wrapper │ │ │ └── AdjustWrapper.swift │ ├── TermsOfServiceManager.swift │ ├── UserNotificationCenterProtocol.swift │ ├── Utils │ │ ├── BackgroundTabLoader.swift │ │ ├── ConcurrencyThrottler.swift │ │ ├── CuratedRecommendationCacheUtility.swift │ │ ├── DownloadLiveActivityUtil.swift │ │ ├── GleanHttpUploader.swift │ │ ├── GleanOhttpUploader.swift │ │ ├── GleanPingUploader.swift │ │ ├── HistoryDeletionUtility.swift │ │ ├── ImpressionTrackingUtility.swift │ │ ├── IntensityVisualEffectView.swift │ │ ├── Layout.swift │ │ ├── LocaleProvider.swift │ │ ├── MainThreadThrottler.swift │ │ ├── MarkupParser │ │ │ ├── MarkupAttributionUtility.swift │ │ │ ├── MarkupNode.swift │ │ │ ├── MarkupParsingUtility.swift │ │ │ ├── MarkupToken.swift │ │ │ └── MarkupTokenizingUtility.swift │ │ ├── PingUploaderProtocol.swift │ │ ├── SponsoredContentFilterUtility.swift │ │ ├── Swizzling.h │ │ ├── Swizzling.m │ │ ├── Try.h │ │ ├── Try.m │ │ └── UIApplicationInterface.swift │ ├── ab.lproj │ │ └── InfoPlist.strings │ ├── af.lproj │ │ └── InfoPlist.strings │ ├── an.lproj │ │ └── InfoPlist.strings │ ├── anp.lproj │ │ └── InfoPlist.strings │ ├── ar.lproj │ │ └── InfoPlist.strings │ ├── ast.lproj │ │ └── InfoPlist.strings │ ├── az.lproj │ │ └── InfoPlist.strings │ ├── be.lproj │ │ └── InfoPlist.strings │ ├── bg.lproj │ │ └── InfoPlist.strings │ ├── bn.lproj │ │ └── InfoPlist.strings │ ├── bo.lproj │ │ └── InfoPlist.strings │ ├── br.lproj │ │ └── InfoPlist.strings │ ├── bs.lproj │ │ └── InfoPlist.strings │ ├── ca.lproj │ │ └── InfoPlist.strings │ ├── co.lproj │ │ └── InfoPlist.strings │ ├── cs.lproj │ │ └── InfoPlist.strings │ ├── cy.lproj │ │ └── InfoPlist.strings │ ├── da.lproj │ │ └── InfoPlist.strings │ ├── de.lproj │ │ └── InfoPlist.strings │ ├── dsb.lproj │ │ └── InfoPlist.strings │ ├── el.lproj │ │ └── InfoPlist.strings │ ├── en-CA.lproj │ │ └── InfoPlist.strings │ ├── en-GB.lproj │ │ └── InfoPlist.strings │ ├── en-US.lproj │ │ └── InfoPlist.strings │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── eo.lproj │ │ └── InfoPlist.strings │ ├── es-AR.lproj │ │ └── InfoPlist.strings │ ├── es-CL.lproj │ │ └── InfoPlist.strings │ ├── es-ES.lproj │ │ └── InfoPlist.strings │ ├── es-MX.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── et.lproj │ │ └── InfoPlist.strings │ ├── eu.lproj │ │ └── InfoPlist.strings │ ├── fa.lproj │ │ └── InfoPlist.strings │ ├── fi.lproj │ │ └── InfoPlist.strings │ ├── fil.lproj │ │ └── InfoPlist.strings │ ├── fr.lproj │ │ └── InfoPlist.strings │ ├── ga.lproj │ │ └── InfoPlist.strings │ ├── gd.lproj │ │ └── InfoPlist.strings │ ├── gl.lproj │ │ └── InfoPlist.strings │ ├── gu-IN.lproj │ │ └── InfoPlist.strings │ ├── he.lproj │ │ └── InfoPlist.strings │ ├── hi-IN.lproj │ │ └── InfoPlist.strings │ ├── hr.lproj │ │ └── InfoPlist.strings │ ├── hsb.lproj │ │ └── InfoPlist.strings │ ├── hu.lproj │ │ └── InfoPlist.strings │ ├── hy-AM.lproj │ │ └── InfoPlist.strings │ ├── ia.lproj │ │ └── InfoPlist.strings │ ├── id.lproj │ │ └── InfoPlist.strings │ ├── is.lproj │ │ └── InfoPlist.strings │ ├── it.lproj │ │ └── InfoPlist.strings │ ├── ja.lproj │ │ └── InfoPlist.strings │ ├── jv.lproj │ │ └── InfoPlist.strings │ ├── ka.lproj │ │ └── InfoPlist.strings │ ├── kab.lproj │ │ └── InfoPlist.strings │ ├── kk.lproj │ │ └── InfoPlist.strings │ ├── km.lproj │ │ └── InfoPlist.strings │ ├── kn.lproj │ │ └── InfoPlist.strings │ ├── ko.lproj │ │ └── InfoPlist.strings │ ├── lo.lproj │ │ └── InfoPlist.strings │ ├── lt.lproj │ │ └── InfoPlist.strings │ ├── lv.lproj │ │ └── InfoPlist.strings │ ├── ml.lproj │ │ └── InfoPlist.strings │ ├── mr.lproj │ │ └── InfoPlist.strings │ ├── ms.lproj │ │ └── InfoPlist.strings │ ├── my.lproj │ │ └── InfoPlist.strings │ ├── nb.lproj │ │ └── InfoPlist.strings │ ├── ne-NP.lproj │ │ └── InfoPlist.strings │ ├── nl.lproj │ │ └── InfoPlist.strings │ ├── nn.lproj │ │ └── InfoPlist.strings │ ├── ny.lproj │ │ └── InfoPlist.strings │ ├── oc.lproj │ │ └── InfoPlist.strings │ ├── or.lproj │ │ └── InfoPlist.strings │ ├── pa-IN.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ ├── pt-BR.lproj │ │ └── InfoPlist.strings │ ├── pt-PT.lproj │ │ └── InfoPlist.strings │ ├── rm.lproj │ │ └── InfoPlist.strings │ ├── ro.lproj │ │ └── InfoPlist.strings │ ├── ru.lproj │ │ └── InfoPlist.strings │ ├── sat-Olck.lproj │ │ └── InfoPlist.strings │ ├── scn.lproj │ │ └── InfoPlist.strings │ ├── ses.lproj │ │ └── InfoPlist.strings │ ├── si.lproj │ │ └── InfoPlist.strings │ ├── sk.lproj │ │ └── InfoPlist.strings │ ├── sl.lproj │ │ └── InfoPlist.strings │ ├── sq.lproj │ │ └── InfoPlist.strings │ ├── su.lproj │ │ └── InfoPlist.strings │ ├── sv.lproj │ │ └── InfoPlist.strings │ ├── ta.lproj │ │ └── InfoPlist.strings │ ├── te.lproj │ │ └── InfoPlist.strings │ ├── tg.lproj │ │ └── InfoPlist.strings │ ├── th.lproj │ │ └── InfoPlist.strings │ ├── tr.lproj │ │ └── InfoPlist.strings │ ├── tt.lproj │ │ └── InfoPlist.strings │ ├── tzm.lproj │ │ └── InfoPlist.strings │ ├── ug.lproj │ │ └── InfoPlist.strings │ ├── uk.lproj │ │ └── InfoPlist.strings │ ├── ur.lproj │ │ └── InfoPlist.strings │ ├── uz.lproj │ │ └── InfoPlist.strings │ ├── vi.lproj │ │ └── InfoPlist.strings │ ├── zh-CN.lproj │ │ └── InfoPlist.strings │ └── zh-TW.lproj │ │ └── InfoPlist.strings ├── CredentialProvider │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── clear-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── combinedShape.png │ │ │ ├── combinedShape@2x.png │ │ │ └── combinedShape@3x.png │ │ ├── empty-list-placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── empty-placeholder-img.png │ │ │ ├── empty-placeholder-img@2x.png │ │ │ └── empty-placeholder-img@3x.png │ │ ├── item-list-placeholder.imageset │ │ │ ├── Contents.json │ │ │ ├── syncing-placeholder-img.png │ │ │ ├── syncing-placeholder-img@2x.png │ │ │ └── syncing-placeholder-img@3x.png │ │ ├── search-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ └── icon@3x.png │ │ └── warning.imageset │ │ │ ├── Contents.json │ │ │ ├── warning16.png │ │ │ ├── warning16@2x.png │ │ │ └── warning16@3x.png │ ├── Cells │ │ ├── EmptyPlaceholderCell.swift │ │ ├── ItemListCell.swift │ │ ├── NoSearchResultCell.swift │ │ └── SelectPasswordCell.swift │ ├── CredentialAssets.xcassets │ │ ├── Colors │ │ │ ├── Contents.json │ │ │ ├── credentialCellColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── labelColor.colorset │ │ │ │ └── Contents.json │ │ │ └── launchScreenBackgroundColor.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── crossCircleFillLarge.imageset │ │ │ ├── Contents.json │ │ │ └── crossCircleFillLarge.pdf │ │ ├── logo-glyph.imageset │ │ │ ├── Contents.json │ │ │ ├── splash.png │ │ │ ├── splash@2x.png │ │ │ └── splash@3x.png │ │ └── searchLarge.imageset │ │ │ ├── Contents.json │ │ │ └── searchLarge.pdf │ ├── CredentialList.storyboard │ ├── CredentialListPresenter.swift │ ├── CredentialListViewController.swift │ ├── CredentialPasscodeRequirementViewController.swift │ ├── CredentialProvider.entitlements │ ├── CredentialProviderFennec.entitlements │ ├── CredentialProviderFirefox.entitlements │ ├── CredentialProviderFirefoxBeta.entitlements │ ├── CredentialProviderPresenter.swift │ ├── CredentialProviderViewController.swift │ ├── CredentialWelcomeViewController.swift │ ├── Extensions │ │ ├── UIFontExtension.swift │ │ └── UIImageExtension.swift │ ├── Info.plist │ └── MainInterface.storyboard ├── Extensions │ ├── ActionExtension │ │ ├── ActionViewController.swift │ │ ├── FirefoxURLBuilding.swift │ │ ├── Info.plist │ │ ├── Media.xcassets │ │ │ ├── AppIconExtension-iOS.appiconset │ │ │ │ ├── ActionExtensionIcons.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ShareItem.swift │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── Entitlements │ │ ├── Fennec.entitlements │ │ ├── FennecEnterprise.entitlements │ │ ├── Firefox.entitlements │ │ └── FirefoxBeta.entitlements │ ├── NotificationService │ │ ├── Info.plist │ │ ├── NotificationPayloads.swift │ │ └── NotificationService.swift │ └── ShareTo │ │ ├── EmbeddedNavController.swift │ │ ├── Images.xcassets │ │ ├── Contents.json │ │ ├── Icon-Small.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ └── icon-40@3x.png │ │ ├── bookmarkLarge.imageset │ │ │ ├── Contents.json │ │ │ └── bookmarkLarge.pdf │ │ ├── chevronRightLarge.imageset │ │ │ ├── Contents.json │ │ │ └── chevronRightLarge.pdf │ │ ├── cloudLarge.imageset │ │ │ ├── Contents.json │ │ │ └── cloudLarge.pdf │ │ ├── deviceDesktopLarge.imageset │ │ │ ├── Contents.json │ │ │ └── deviceDesktopLarge.pdf │ │ ├── deviceDesktopSendLarge.imageset │ │ │ ├── Contents.json │ │ │ └── deviceDesktopSendLarge.pdf │ │ ├── deviceMobileLarge.imageset │ │ │ ├── Contents.json │ │ │ └── deviceMobileLarge.pdf │ │ ├── deviceTabletLarge.imageset │ │ │ ├── Contents.json │ │ │ └── deviceTabletLarge.pdf │ │ ├── logoFirefoxLarge.imageset │ │ │ ├── Contents.json │ │ │ └── logoFirefoxLarge.pdf │ │ ├── readingListAddLarge.imageset │ │ │ ├── Contents.json │ │ │ └── readingListAddLarge.pdf │ │ ├── searchLarge.imageset │ │ │ ├── Contents.json │ │ │ └── searchLarge.pdf │ │ └── tabTrayLarge.imageset │ │ │ ├── Contents.json │ │ │ └── tabTrayLarge.pdf │ │ ├── Info.plist │ │ ├── InitialViewController.swift │ │ ├── SendToDevice.swift │ │ ├── ShareViewController.swift │ │ └── UXConstants.swift ├── FxA │ └── FxA │ │ ├── NSData+SHA.h │ │ ├── NSData+SHA.m │ │ └── PrivateKey.h ├── PrivacyInfo.xcprivacy ├── Providers │ ├── LoginRecordExtension.swift │ ├── Merino │ │ ├── MerinoFeedFetcher.swift │ │ ├── MerinoProvider.swift │ │ ├── MerinoTestData.swift │ │ └── Model │ │ │ └── MerinoStory.swift │ ├── Profile.swift │ ├── RustErrors.swift │ ├── RustProtocols │ │ ├── AutofillProvider.swift │ │ ├── LoginProvider.swift │ │ ├── PlacesProvider.swift │ │ └── TabsProvider.swift │ ├── RustSyncManager.swift │ ├── SyncDisplayState.swift │ ├── TopSitesProvider.swift │ └── TopSitesWidgetManager.swift ├── Push │ ├── Autopush.swift │ └── PushConfiguration.swift ├── README.md ├── RustFxA │ ├── Avatar.swift │ ├── FirefoxAccountSignInViewController.swift │ ├── FxAEntryPoint.swift │ ├── FxALaunchParams.swift │ ├── FxASignInViewParameters.swift │ ├── FxAWebViewController.swift │ ├── FxAWebViewModel.swift │ ├── FxAWebViewTelemetry.swift │ ├── PushNotificationSetup.swift │ └── RustFirefoxAccounts.swift ├── RustMozillaAppServices-Info.plist ├── Shared │ ├── Date+relativeTimeString.swift │ ├── DeviceInfo+defaultClientName.swift │ ├── FSUtils.h │ ├── FSUtils.m │ ├── KeychainCache.swift │ ├── Shared-Bridging-Header.h │ ├── Strings.swift │ ├── Supporting Files │ │ ├── Info.plist │ │ ├── ab.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ └── ZoomPageBar.strings │ │ ├── af.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── an.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── anp.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── ar.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── EditAddress.strings │ │ │ └── EnhancedTrackingProtection.strings │ │ ├── ast.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── az.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── be.lproj │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ └── ZoomPageBar.strings │ │ ├── bg.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── bn.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── bo.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── br.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── bs.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ca.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── co.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── cs.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── cy.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── da.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── de.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── dsb.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── el.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── en-CA.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── en-GB.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── en-US.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ └── ZoomPageBar.strings │ │ ├── eo.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── es-AR.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── es-CL.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── es-ES.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── es-MX.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── es.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── et.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ └── Bookmarks.strings │ │ ├── eu.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── fa.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── fi.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── fil.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ ├── EditCard.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordGenerator.strings │ │ │ └── Settings.strings │ │ ├── fr.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ga.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── gd.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ └── ZoomPageBar.strings │ │ ├── gl.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── gu-IN.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── he.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── hi-IN.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── hr.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── hsb.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── hu.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── hy-AM.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ia.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── id.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── is.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── it.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ja.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── jv.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── ka.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── kab.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── kk.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── km.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── kn.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── ko.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── lo.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── lt.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── lv.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── ml.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── mr.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── ms.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── my.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── nb.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ne-NP.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── nl.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── nn.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── oc.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── or.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── pa-IN.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── pl.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ └── ZoomPageBar.strings │ │ ├── pt-BR.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── pt-PT.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── rm.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ro.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ru.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── sat-Olck.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ └── ZoomPageBar.strings │ │ ├── scn.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ses.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── si.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── sk.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── sl.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── sq.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── su.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ └── ZoomPageBar.strings │ │ ├── sv.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ta.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── te.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── tg.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── th.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── tr.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── tt.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── tzm.lproj │ │ │ ├── BookmarkPanel.strings │ │ │ └── BookmarkPanelDeleteConfirm.strings │ │ ├── ug.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── uk.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── ur.lproj │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── ErrorState.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── Onboarding.strings │ │ │ └── Settings.strings │ │ ├── uz.lproj │ │ │ └── BookmarkPanel.strings │ │ ├── vi.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ ├── zh-CN.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ │ └── zh-TW.lproj │ │ │ ├── ActivityStream.strings │ │ │ ├── AddressToolbar.strings │ │ │ ├── Alert.strings │ │ │ ├── Alerts.strings │ │ │ ├── AppIconSelection.strings │ │ │ ├── BiometricAuthentication.strings │ │ │ ├── BookmarkPanel.strings │ │ │ ├── BookmarkPanelDeleteConfirm.strings │ │ │ ├── Bookmarks.strings │ │ │ ├── BottomSheet.strings │ │ │ ├── ContextualHints.strings │ │ │ ├── CredentialProvider.strings │ │ │ ├── Credentials.strings │ │ │ ├── CustomizeFirefoxHome.strings │ │ │ ├── DisplayCard.strings │ │ │ ├── Edit Card.strings │ │ │ ├── EditAddress.strings │ │ │ ├── EditCard.strings │ │ │ ├── EngagementNotification.strings │ │ │ ├── EnhancedTrackingProtection.strings │ │ │ ├── ErrorState.strings │ │ │ ├── ExternalLink.strings │ │ │ ├── FirefoxHomepage.strings │ │ │ ├── FirefoxLogins.strings │ │ │ ├── FirefoxSync.strings │ │ │ ├── Footer.strings │ │ │ ├── FxANotification.strings │ │ │ ├── JumpBackIn.strings │ │ │ ├── KeyboardAccessory.strings │ │ │ ├── LibraryPanel.strings │ │ │ ├── LiveActivity.strings │ │ │ ├── LoginsHelper.strings │ │ │ ├── MainMenu.strings │ │ │ ├── Microsurvey.strings │ │ │ ├── NativeErrorPage.strings │ │ │ ├── Notification.strings │ │ │ ├── Onboarding.strings │ │ │ ├── PasswordAutofill.strings │ │ │ ├── PasswordGenerator.strings │ │ │ ├── QRCode.strings │ │ │ ├── RelayMask.strings │ │ │ ├── RememberCard.strings │ │ │ ├── ResearchSurface.strings │ │ │ ├── ScanQRCode.strings │ │ │ ├── SearchEngineSelection.strings │ │ │ ├── SearchHeaderTitle.strings │ │ │ ├── SearchZero.strings │ │ │ ├── SelectCreditCard.strings │ │ │ ├── Settings.strings │ │ │ ├── Share.strings │ │ │ ├── Shopping.strings │ │ │ ├── SnackBar.strings │ │ │ ├── SocialMediaApp.strings │ │ │ ├── SocialShare.strings │ │ │ ├── SuggestedSites.strings │ │ │ ├── Summarize.strings │ │ │ ├── Summarizer.strings │ │ │ ├── TabLocation.strings │ │ │ ├── TabToolbar.strings │ │ │ ├── TabsTray.strings │ │ │ ├── TermsOfUse.strings │ │ │ ├── Toolbar.strings │ │ │ ├── ToolbarLocation.strings │ │ │ ├── Translations.strings │ │ │ ├── UpdateCard.strings │ │ │ ├── Upgrade.strings │ │ │ ├── WebView.strings │ │ │ └── ZoomPageBar.strings │ ├── ab.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── af.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── an.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── anp.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── ar.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ast.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── az.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── be.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── bg.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── bn.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── bo.lproj │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── HistoryPanel.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ └── Search.strings │ ├── br.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── bs.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ca.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── co.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── cs.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── cy.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── da.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── de.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── dsb.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── effective_tld_names.dat │ ├── el.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── en-CA.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── en-GB.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── en-US.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── en.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── eo.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── es-AR.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── es-CL.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── es-ES.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── es-MX.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── es.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── et.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── eu.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── fa.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── fi.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── fil.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── fr.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ga.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── gd.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── gl.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── gu-IN.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── he.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── hi-IN.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── hr.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── hsb.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── hu.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── hy-AM.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ia.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── id.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── is.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── it.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ja.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── jv.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ └── Storage.strings │ ├── ka.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── kab.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── kk.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── km.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── kn.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ko.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── lo.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── lt.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── lv.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── ml.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── mr.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── ms.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── my.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── nb.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ne-NP.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── nl.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── nn.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── oc.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── or.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ └── LoginManager.strings │ ├── pa-IN.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── pl.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── pt-BR.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── pt-PT.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── rm.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ro.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ru.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── sat-Olck.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── scn.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ses.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── si.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── sk.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── sl.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── sq.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── su.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── sv.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ta.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── te.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── tg.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── th.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── tr.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── tt.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── tzm.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Shared.strings │ │ └── Today.strings │ ├── ug.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── uk.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── ur.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── uz.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ └── Storage.strings │ ├── vi.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ ├── zh-CN.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings │ └── zh-TW.lproj │ │ ├── 3DTouchActions.strings │ │ ├── AuthenticationManager.strings │ │ ├── ClearHistoryConfirm.strings │ │ ├── ClearPrivateData.strings │ │ ├── ClearPrivateDataConfirm.strings │ │ ├── Default Browser.strings │ │ ├── ErrorPages.strings │ │ ├── FindInPage.strings │ │ ├── HistoryPanel.strings │ │ ├── Intro.strings │ │ ├── Localizable.strings │ │ ├── LoginManager.strings │ │ ├── Menu.strings │ │ ├── PrivateBrowsing.strings │ │ ├── Search.strings │ │ ├── Shared.strings │ │ ├── Storage.strings │ │ └── Today.strings ├── Storage │ ├── CertStore.swift │ ├── Clients.swift │ ├── Cursor.swift │ ├── DatabaseError.swift │ ├── DefaultSuggestedSites.swift │ ├── DiskImageStore.swift │ ├── ExtensionUtils.swift │ ├── FileAccessor.swift │ ├── Info.plist │ ├── MockRustKeychain.swift │ ├── PageMetadata.swift │ ├── PinnedSites.swift │ ├── Queue.swift │ ├── ReadingList.swift │ ├── RecentlyClosedTabs.swift │ ├── RemoteTabs.swift │ ├── Rust │ │ ├── RustAutofill.swift │ │ ├── RustFirefoxSuggest.swift │ │ ├── RustFirefoxSuggestion.swift │ │ ├── RustFxAKeychain.swift │ │ ├── RustLogins.swift │ │ ├── RustPlaces.swift │ │ ├── RustRemoteTabs.swift │ │ ├── RustShared.swift │ │ ├── UnencryptedAddressFields.swift │ │ └── UnencryptedCreditCardFields.swift │ ├── RustKeychain.swift │ ├── SQL │ │ ├── BrowserDB.swift │ │ ├── BrowserSchema.swift │ │ ├── ReadingListSchema.swift │ │ ├── SQLiteHistoryFactories.swift │ │ ├── SQLitePinnedSites.swift │ │ ├── SQLiteQueue.swift │ │ ├── SQLiteReadingList.swift │ │ └── Schema.swift │ ├── Sharing.swift │ ├── Sites │ │ ├── PinnedSiteInfo.swift │ │ ├── Site.swift │ │ ├── SiteType.swift │ │ ├── SponsoredSiteInfo.swift │ │ └── SuggestedSiteInfo.swift │ ├── Storage-Bridging-Header.h │ ├── ThirdParty │ │ └── SwiftData.swift │ ├── Visit.swift │ ├── ZoomLevelStore.swift │ └── metrics.yaml ├── Sync │ ├── Info.plist │ ├── RustSyncManagerAPI.swift │ ├── Sync-Bridging-Header.h │ └── SyncConstants.swift ├── ThirdParty │ ├── Apple │ │ ├── UIImage+ImageEffects.h │ │ └── UIImage+ImageEffects.m │ ├── Deferred │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Deferred.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Deferred.xcscheme │ │ │ │ ├── DeferredMac.xcscheme │ │ │ │ └── DeferredTests.xcscheme │ │ ├── Deferred │ │ │ └── Deferred.h │ │ ├── DeferredMac │ │ │ ├── DeferredMac.h │ │ │ └── Info.plist │ │ ├── DeferredMacTests │ │ │ └── Info.plist │ │ ├── DeferredTests │ │ │ ├── DeferredTests.swift │ │ │ ├── Info.plist │ │ │ ├── LockProtectedTests.swift │ │ │ └── ReadWriteLockTests.swift │ │ ├── LICENSE │ │ └── README.md │ ├── Result │ │ ├── LICENSE │ │ └── README.md │ ├── UIImageViewAligned │ │ └── LICENSE │ ├── ecec │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ │ ├── ece.h │ │ │ └── ece │ │ │ │ ├── keys.h │ │ │ │ └── trailer.h │ │ ├── test │ │ │ ├── base64url.c │ │ │ ├── decrypt │ │ │ │ ├── aes128gcm.c │ │ │ │ └── aesgcm.c │ │ │ ├── e2e.c │ │ │ ├── encrypt │ │ │ │ ├── aes128gcm.c │ │ │ │ └── aesgcm.c │ │ │ ├── params.c │ │ │ ├── test.c │ │ │ └── test.h │ │ └── tool │ │ │ ├── decrypt.c │ │ │ └── keygen.c │ └── sentry-cli ├── WidgetKit │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Background Gradients │ │ │ ├── Contents.json │ │ │ ├── goToCopiedLinkColorOne.colorset │ │ │ │ └── Contents.json │ │ │ ├── goToCopiedLinkColorTwo.colorset │ │ │ │ └── Contents.json │ │ │ ├── goToCopiedLinkSolid.colorset │ │ │ │ └── Contents.json │ │ │ ├── privateGradientOne.colorset │ │ │ │ └── Contents.json │ │ │ ├── privateGradientThree.colorset │ │ │ │ └── Contents.json │ │ │ ├── privateGradientTwo.colorset │ │ │ │ └── Contents.json │ │ │ ├── searchButtonColorOne.colorset │ │ │ │ └── Contents.json │ │ │ └── searchButtonColorTwo.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── WidgetBackground.colorset │ │ │ └── Contents.json │ │ ├── backgroundColor.colorset │ │ │ └── Contents.json │ │ ├── checkmarkLarge.imageset │ │ │ ├── Contents.json │ │ │ └── checkmarkLarge.pdf │ │ ├── deleteLarge.imageset │ │ │ ├── Contents.json │ │ │ └── deleteLarge.pdf │ │ ├── downloadLarge.imageset │ │ │ ├── Contents.json │ │ │ └── downloadLarge.pdf │ │ ├── externalLinkSmall.imageset │ │ │ ├── Contents.json │ │ │ └── externalLinkSmall.pdf │ │ ├── faviconFox.imageset │ │ │ ├── Contents.json │ │ │ ├── back-panel-home.png │ │ │ ├── back-panel-home@2x.png │ │ │ └── back-panel-home@3x.png │ │ ├── globeLarge.imageset │ │ │ ├── Contents.json │ │ │ ├── globeLarge.pdf │ │ │ └── privateModeLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── privateModeLarge.pdf │ │ ├── mediaStop.imageset │ │ │ ├── Contents.json │ │ │ └── mediaStop.pdf │ │ ├── normalBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── openTabsContentColor.colorset │ │ │ └── Contents.json │ │ ├── privateLabelColor.colorset │ │ │ └── Contents.json │ │ ├── privateModeLarge.imageset │ │ │ ├── Contents.json │ │ │ └── privateModeLarge.pdf │ │ ├── searchLarge.imageset │ │ │ ├── Contents.json │ │ │ └── searchLarge.pdf │ │ ├── separatorColor.colorset │ │ │ └── Contents.json │ │ ├── subtitleLabelColor.colorset │ │ │ └── Contents.json │ │ ├── tabTrayLarge.imageset │ │ │ ├── Contents.json │ │ │ └── tabTrayLarge.pdf │ │ └── widgetLabelColors.colorset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── WidgetIntents.intentdefinition │ ├── DownloadManager │ │ └── DownloadLiveActivity.swift │ ├── Helpers.swift │ ├── ImageButtonWithLabel.swift │ ├── Info.plist │ ├── OpenTabs │ │ ├── OpenTabsWidget.swift │ │ ├── SimpleTab.swift │ │ └── TabProvider.swift │ ├── QuickLink.swift │ ├── SearchQuickLinksMedium │ │ └── SearchQuickLinks.swift │ ├── SearchQuickLinksSmall │ │ └── SmallQuickLink.swift │ ├── TopSites │ │ ├── TopSitesProvider.swift │ │ └── TopSitesWidget.swift │ ├── UIView+extension.swift │ ├── WidgetKit.swift │ ├── ab.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── af.lproj │ │ └── WidgetIntents.strings │ ├── an.lproj │ │ └── WidgetIntents.strings │ ├── anp.lproj │ │ └── WidgetIntents.strings │ ├── ar.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ast.lproj │ │ └── WidgetIntents.strings │ ├── az.lproj │ │ └── WidgetIntents.strings │ ├── be.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── bg.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── bn.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── bo.lproj │ │ └── WidgetIntents.strings │ ├── br.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── bs.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ca.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── co.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── cs.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── cy.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── da.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── de.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── dsb.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── el.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── en-CA.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── en-GB.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── en-US.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── eo.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── es-AR.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── es-CL.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── es-ES.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── es-MX.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── es.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── et.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── eu.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── fa.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── fi.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── fil.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── fr.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ga.lproj │ │ └── WidgetIntents.strings │ ├── gd.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── gl.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── gu-IN.lproj │ │ └── WidgetIntents.strings │ ├── he.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── hi-IN.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── hr.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── hsb.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── hu.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── hy-AM.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ia.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── id.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── is.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── it.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ja.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── jv.lproj │ │ └── WidgetIntents.strings │ ├── ka.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── kab.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── kk.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── km.lproj │ │ └── WidgetIntents.strings │ ├── kn.lproj │ │ └── WidgetIntents.strings │ ├── ko.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── lo.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── lt.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── lv.lproj │ │ └── WidgetIntents.strings │ ├── ml.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── mr.lproj │ │ └── WidgetIntents.strings │ ├── ms.lproj │ │ └── WidgetIntents.strings │ ├── my.lproj │ │ └── WidgetIntents.strings │ ├── nb.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ne-NP.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── nl.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── nn.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ny.lproj │ │ └── WidgetIntents.strings │ ├── oc.lproj │ │ └── WidgetIntents.strings │ ├── or.lproj │ │ └── WidgetIntents.strings │ ├── pa-IN.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── pl.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── pt-BR.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── pt-PT.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── rm.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ro.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ru.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── sat-Olck.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── scn.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ses.lproj │ │ └── WidgetIntents.strings │ ├── si.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── sk.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── sl.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── sq.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── su.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── sv.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ta.lproj │ │ └── WidgetIntents.strings │ ├── te.lproj │ │ └── WidgetIntents.strings │ ├── tg.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── th.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── tr.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── tt.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── tzm.lproj │ │ └── WidgetIntents.strings │ ├── ug.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── uk.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── ur.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── uz.lproj │ │ └── WidgetIntents.strings │ ├── vi.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ ├── zh-CN.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings │ └── zh-TW.lproj │ │ ├── Localizable.strings │ │ └── WidgetIntents.strings ├── bin │ ├── nimbus-fml-configuration.sh │ └── sdk_generator.sh ├── fastlane │ ├── Fastfile │ ├── SnapshotHelper.swift │ └── actions │ │ └── import_build_tools.rb ├── firefox-ios-tests │ └── Tests │ │ ├── .swiftlint.yml │ │ ├── AccessibilityTestPlan.xctestplan │ │ ├── AccountTests │ │ ├── Info.plist │ │ └── Push │ │ │ └── AutopushTests.swift │ │ ├── ClientTests │ │ ├── AppIconSelection │ │ │ └── AppIconSelectionTelemetryTests.swift │ │ ├── Application │ │ │ ├── AppLaunchUtilTests.swift │ │ │ ├── AppSendTabDelegateTests.swift │ │ │ ├── AppleIntelligenceUtilTests.swift │ │ │ ├── DefaultBrowserUitlityTests.swift │ │ │ └── MockUIApplication.swift │ │ ├── Autofill │ │ │ ├── AddressListViewModelTests.swift │ │ │ ├── AddressLocaleFeatureValidatorTests.swift │ │ │ ├── FormAutofillHelperTests.swift │ │ │ ├── LoginListViewModelTests.swift │ │ │ └── Mocks │ │ │ │ ├── MockCreditCardProvider.swift │ │ │ │ └── MockLoginProvider.swift │ │ ├── BreachAlertsTests.swift │ │ ├── BrowserViewControllerStateTests.swift │ │ ├── BrowserViewControllerTests.swift │ │ ├── CanRemoveQuickActionBookmarkTests.swift │ │ ├── ClientTests.swift │ │ ├── ClosedTabsStoreTests.swift │ │ ├── ContentBlockerTests.swift │ │ ├── Coordinators │ │ │ ├── BaseCoordinatorTests.swift │ │ │ ├── BrowserCoordinatorTests.swift │ │ │ ├── CredentialAutofillCoordinatorTests.swift │ │ │ ├── DefaultRouterTests.swift │ │ │ ├── EnhancedTrackingProtectionCoordinatorTests.swift │ │ │ ├── Launch │ │ │ │ ├── LaunchCoordinatorTests.swift │ │ │ │ └── LaunchTypeTests.swift │ │ │ ├── LaunchView │ │ │ │ ├── LaunchScreenViewControllerTests.swift │ │ │ │ ├── LaunchScreenViewModelTests.swift │ │ │ │ └── ModernLaunchScreenViewControllerTests.swift │ │ │ ├── Library │ │ │ │ ├── BookmarksCoordinatorTests.swift │ │ │ │ ├── DownloadsCoordinatorTests.swift │ │ │ │ ├── HistoryCoordinatorTests.swift │ │ │ │ ├── LibraryCoordinatorTests.swift │ │ │ │ └── ReadingListCoordinatorTests.swift │ │ │ ├── Mocks │ │ │ │ ├── MockBrowserCoordinator.swift │ │ │ │ ├── MockLibraryCoordinatorDelegate.swift │ │ │ │ ├── MockLibraryNavigationHandler.swift │ │ │ │ ├── MockParentCoordinator.swift │ │ │ │ ├── MockQRCodeParentCoordinator.swift │ │ │ │ ├── MockStoreForMiddleware.swift │ │ │ │ ├── MockTabTrayCoordinatorDelegate.swift │ │ │ │ ├── PasswordManagerCoordinatorDelegateMock.swift │ │ │ │ └── PasswordManagerListViewControllerSpy.swift │ │ │ ├── PasswordManagerCoordinatorTests.swift │ │ │ ├── QRCodeCoordinatorTests.swift │ │ │ ├── RouteBuilderTests.swift │ │ │ ├── RouteTests.swift │ │ │ ├── SceneCoordinatorTests.swift │ │ │ ├── SearchEngineSelectionCoordinatorTests.swift │ │ │ ├── SettingsCoordinatorTests.swift │ │ │ ├── ShareSheetCoordinatorTests.swift │ │ │ ├── ShortcutRouteTests.swift │ │ │ ├── SummarizeCoordinatorTests.swift │ │ │ ├── TabTray │ │ │ │ ├── RemoteTabsCoordinatorTests.swift │ │ │ │ ├── TabTrayCoordinatorTests.swift │ │ │ │ └── TabsCoordinatorTests.swift │ │ │ ├── URLScannerTests.swift │ │ │ └── UserActivityRouteTests.swift │ │ ├── CreditCard │ │ │ ├── AccessoryViewProviderTests.swift │ │ │ ├── CreditCardBottomSheetViewModelTests.swift │ │ │ ├── CreditCardInputFieldHelperTests.swift │ │ │ ├── CreditCardInputFieldTests.swift │ │ │ ├── CreditCardInputViewModelTests.swift │ │ │ ├── CreditCardSettingsViewControllerTests.swift │ │ │ └── CreditCardValidatorTests.swift │ │ ├── CuratedRecommendationCacheUtilityTests.swift │ │ ├── CustomSearchEnginesTest.swift │ │ ├── DateGroupedTableDataTests.swift │ │ ├── DefaultBrowserOnboardingTests │ │ │ └── DefaultBrowserOnboardingTests.swift │ │ ├── DefaultThemeManagerTests.swift │ │ ├── DependencyInjection │ │ │ └── DependencyHelperMock.swift │ │ ├── DictionaryExtensionsTests.swift │ │ ├── DocumentLoggerTests.swift │ │ ├── DownloadHelperTests.swift │ │ ├── DownloadLiveActivityTest.swift │ │ ├── DownloadProgressManagerTests.swift │ │ ├── DownloadQueueTests.swift │ │ ├── DownloadTests.swift │ │ ├── EventQueueTests.swift │ │ ├── Extensions │ │ │ ├── CalendarExtensionsTests.swift │ │ │ ├── TestHashExtensions.swift │ │ │ ├── UIPasteboardExtensionsTests.swift │ │ │ ├── UIStackViewExtensionsTests.swift │ │ │ ├── URLMailTests.swift │ │ │ └── WKFrameInfoExtensionsTest.swift │ │ ├── FeatureFlagManagerTests.swift │ │ ├── FileAccessorTests.swift │ │ ├── FirefoxAccountSignInViewControllerTests.swift │ │ ├── Frontend │ │ │ ├── Browser │ │ │ │ ├── BrowserViewControllerWebViewDelegateTests.swift │ │ │ │ ├── BrowserWebUIDelegateTests.swift │ │ │ │ ├── EnhancedTrackingProtection │ │ │ │ │ └── EnhancedTrackingProtectionMenuVMTests.swift │ │ │ │ ├── LegacyTabScrollControllerTests.swift │ │ │ │ ├── RemoteTabsPanelDelegateMock.swift │ │ │ │ ├── RemoteTabsPanelTests.swift │ │ │ │ ├── SearchEngines │ │ │ │ │ ├── MockSearchEngineProvider.swift │ │ │ │ │ ├── OpenSearchEngineTests.swift │ │ │ │ │ ├── SearchEngineSelectionMiddlewareTests.swift │ │ │ │ │ ├── SearchEngineSelectionStateTests.swift │ │ │ │ │ ├── SearchEngineSelectionViewControllerTests.swift │ │ │ │ │ ├── SearchEngineTestAssets.xcassets │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── wikipedia.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── wikipedia-org.png │ │ │ │ │ │ └── youtube.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── youtube-com.png │ │ │ │ │ ├── SearchEnginesManagerTests.swift │ │ │ │ │ └── SearchTests.swift │ │ │ │ ├── TabScrollHandlerTests.swift │ │ │ │ ├── ToolbarAnimatorTest.swift │ │ │ │ ├── TopSitesHelperTests.swift │ │ │ │ └── WebView │ │ │ │ │ └── WebViewNavigationHandlerTests.swift │ │ │ ├── ContentContainerTests.swift │ │ │ ├── ContextualHints │ │ │ │ ├── ContextualHintEligibilityUtilityTests.swift │ │ │ │ └── ContextualHintViewProviderTests.swift │ │ │ ├── Home │ │ │ │ ├── FirefoxHomeJumpBackInViewModelTests.swift │ │ │ │ └── JumpBackIn │ │ │ │ │ └── JumpBackInViewModelTests.swift │ │ │ ├── Homepage │ │ │ │ ├── ContextMenu │ │ │ │ │ ├── ContextMenuConfigurationTests.swift │ │ │ │ │ └── ContextMenuCoordinatorTests.swift │ │ │ │ ├── HomepageDiffableDataSourceTests.swift │ │ │ │ ├── HomepageDimensionCalculatorTests.swift │ │ │ │ ├── HomepageViewControllerTests.swift │ │ │ │ ├── LabelButtonHeaderViewTests.swift │ │ │ │ ├── MerinoManagerTests.swift │ │ │ │ ├── Mock │ │ │ │ │ ├── MockContileProvider.swift │ │ │ │ │ ├── MockGoogleTopSiteManager.swift │ │ │ │ │ ├── MockPocketManager.swift │ │ │ │ │ ├── MockSearchEngineManager.swift │ │ │ │ │ ├── MockSponsoredTelemetry.swift │ │ │ │ │ ├── MockStoryProvider.swift │ │ │ │ │ ├── MockThrottler.swift │ │ │ │ │ ├── MockTopSiteHistoryManager.swift │ │ │ │ │ └── MockTopSitesManager.swift │ │ │ │ ├── PrivateHomepageViewControllerTests.swift │ │ │ │ ├── Redux │ │ │ │ │ ├── BookmarksMiddlewareTests.swift │ │ │ │ │ ├── BookmarksSectionStateTests.swift │ │ │ │ │ ├── HeaderStateTests.swift │ │ │ │ │ ├── HomepageMiddlewareTests.swift │ │ │ │ │ ├── HomepageStateTests.swift │ │ │ │ │ ├── JumpBackInSectionStateTests.swift │ │ │ │ │ ├── MerinoMiddlewareTests.swift │ │ │ │ │ ├── MerinoStateTests.swift │ │ │ │ │ ├── MessageCardMiddlewareTests.swift │ │ │ │ │ ├── MessageCardStateTests.swift │ │ │ │ │ ├── SearchBarStateTests.swift │ │ │ │ │ ├── TopSitesMiddlewareTests.swift │ │ │ │ │ └── TopSitesSectionStateTests.swift │ │ │ │ ├── StoryProviderTests.swift │ │ │ │ ├── TopSitesManagerTests.swift │ │ │ │ ├── UnifiedAds │ │ │ │ │ ├── ContileProviderTests.swift │ │ │ │ │ ├── SponsoredTileDataUtilityTests.swift │ │ │ │ │ ├── UnifiedAdsCallbackTelemetryTests.swift │ │ │ │ │ └── UnifiedAdsProviderTests.swift │ │ │ │ └── Wallpaper │ │ │ │ │ ├── WallpaperMiddlewareTests.swift │ │ │ │ │ └── WallpaperStateTests.swift │ │ │ ├── RecordVisitObservationManagerTests.swift │ │ │ ├── ShortcutsLibrary │ │ │ │ ├── Redux │ │ │ │ │ ├── ShortcutsLibraryDiffableDataSourceTests.swift │ │ │ │ │ ├── ShortcutsLibraryMiddlewareTests.swift │ │ │ │ │ └── ShortcutsLibraryStateTests.swift │ │ │ │ └── ShortcutsLibraryViewControllerTests.swift │ │ │ ├── StoriesFeed │ │ │ │ ├── Mock │ │ │ │ │ └── MockStoriesFeedTelemetry.swift │ │ │ │ ├── Redux │ │ │ │ │ └── StoriesFeedStateTests.swift │ │ │ │ ├── StoriesFeedDiffableDataSourceTests.swift │ │ │ │ ├── StoriesFeedDimensionCalculatorTests.swift │ │ │ │ ├── StoriesFeedViewControllerTests.swift │ │ │ │ └── StoriesWebviewViewControllerTests.swift │ │ │ ├── Summarizer │ │ │ │ └── SummarizerMiddlewareTests.swift │ │ │ ├── SyncContentSettingsViewControllerTests.swift │ │ │ └── Theme │ │ │ │ ├── MockThemeManager.swift │ │ │ │ └── ThemeableTests.swift │ │ ├── FxAPushMessageTest.swift │ │ ├── FxAWebViewModelTests.swift │ │ ├── GleanLifecycleObserverTests.swift │ │ ├── GleanPlumbContextProviderTests.swift │ │ ├── GleanUsageReportingLifecycleObserverTest.swift │ │ ├── GroupedTabContainerCellTests.swift │ │ ├── Helpers │ │ │ ├── AccountSyncHandlerTests.swift │ │ │ ├── AdjustTelemetryHelperTests.swift │ │ │ ├── CrashTrackerTests.swift │ │ │ ├── IntroScreenManagerTests.swift │ │ │ ├── MailProvidersTests.swift │ │ │ ├── NotificationManagerTests.swift │ │ │ ├── ProfilePrefsReaderTests.swift │ │ │ ├── RatingPromptManagerTests.swift │ │ │ └── TelemetryDebugMessage.swift │ │ ├── ImpressionTrackingUtilityTests.swift │ │ ├── Info.plist │ │ ├── KeyboardPressesHandlerTests.swift │ │ ├── Library │ │ │ ├── Bookmarks │ │ │ │ ├── BookmarkPanelViewModelTests.swift │ │ │ │ ├── BookmarksTelemetryTests.swift │ │ │ │ ├── DefaultBookmarksSaverTests.swift │ │ │ │ ├── DefaultFolderHierarchyFetcherTests.swift │ │ │ │ ├── EditBookmarkDataSourceTests.swift │ │ │ │ ├── EditBookmarkViewModelTests.swift │ │ │ │ └── EditFolderViewModelTests.swift │ │ │ ├── DownloadsPanelTests.swift │ │ │ ├── DownloadsPanelViewModelTests.swift │ │ │ ├── HistoryPanelTests.swift │ │ │ ├── HistoryPanelViewModelTests.swift │ │ │ ├── LibraryViewModelTests.swift │ │ │ └── ReadingListPanelTests.swift │ │ ├── MainMenu │ │ │ ├── MainMenuConfigurationUtilityTests.swift │ │ │ ├── MainMenuCoordinatorTests.swift │ │ │ ├── MainMenuMiddlewareTests.swift │ │ │ ├── MainMenuStateTests.swift │ │ │ └── MainMenuViewControllerTests.swift │ │ ├── MarkupParseUtilityTests │ │ │ ├── MarkupAttributionUtilityTests.swift │ │ │ └── MarkupParseUtilityTests.swift │ │ ├── MerinoProviderTests.swift │ │ ├── Messaging │ │ │ ├── GleanPlumbMessageManagerTests.swift │ │ │ ├── GleanPlumbMessageStoreTests.swift │ │ │ ├── NimbusMessagingMessageTests.swift │ │ │ └── NimbusMessagingTriggerTests.swift │ │ ├── Microsurvey │ │ │ ├── MicrosurveyCoordinatorTests.swift │ │ │ ├── MicrosurveyMiddlewareTests.swift │ │ │ ├── MicrosurveyPromptStateTests.swift │ │ │ ├── MicrosurveyStateTests.swift │ │ │ ├── MicrosurveySurfaceManagerTests.swift │ │ │ ├── MicrosurveyTelemetryTests.swift │ │ │ ├── MicrosurveyViewControllerTests.swift │ │ │ └── Mock │ │ │ │ ├── MicrosurveyMockModel.swift │ │ │ │ ├── MicrosurveyPromptMiddlewareTests.swift │ │ │ │ ├── MockMicrosurveySurfaceManager.swift │ │ │ │ └── MockMicrosurveyTelemetry.swift │ │ ├── MockSummarizerConfigSource.swift │ │ ├── Mocks │ │ │ ├── BookmarksHandlerMock.swift │ │ │ ├── ContileProviderMock.swift │ │ │ ├── MockAdjustTelemetryData.swift │ │ │ ├── MockAdjustWrapper.swift │ │ │ ├── MockAppAuthenticator.swift │ │ │ ├── MockAppSessionManager.swift │ │ │ ├── MockAppSettingsDelegate.swift │ │ │ ├── MockApplicationHelper.swift │ │ │ ├── MockBookmarksSaver.swift │ │ │ ├── MockBrowserProfile.swift │ │ │ ├── MockBrowserViewController.swift │ │ │ ├── MockBrowserViewControllerWebViewDelegates.swift │ │ │ ├── MockContileNetworking.swift │ │ │ ├── MockCoordinator.swift │ │ │ ├── MockCrashTracker.swift │ │ │ ├── MockDataCleaner.swift │ │ │ ├── MockDateProvider.swift │ │ │ ├── MockDismissalNotifiableViewController.swift │ │ │ ├── MockDispatchGroup.swift │ │ │ ├── MockDispatchQueue.swift │ │ │ ├── MockFolderHierarchyFetcher.swift │ │ │ ├── MockFxAWebViewModel.swift │ │ │ ├── MockFxBookmarkNode.swift │ │ │ ├── MockGleanPlumbMessageManagerProtocol.swift │ │ │ ├── MockGleanWrapper.swift │ │ │ ├── MockHistoryHandler.swift │ │ │ ├── MockLaunchCoordinatorDelegate.swift │ │ │ ├── MockLaunchFinishedLoadingDelegate.swift │ │ │ ├── MockLaunchScreenManager.swift │ │ │ ├── MockLaunchSessionProvider.swift │ │ │ ├── MockLegacyResponder.swift │ │ │ ├── MockLogger.swift │ │ │ ├── MockLoginViewModelDelegate.swift │ │ │ ├── MockMerinoAPI.swift │ │ │ ├── MockNavigationController.swift │ │ │ ├── MockNotificationCenter.swift │ │ │ ├── MockNotificationManager.swift │ │ │ ├── MockOverlayModeManager.swift │ │ │ ├── MockParentFolderSelector.swift │ │ │ ├── MockPlaces.swift │ │ │ ├── MockProfile.swift │ │ │ ├── MockRecordVisitObservationManager.swift │ │ │ ├── MockRemoteTabs.swift │ │ │ ├── MockRouter.swift │ │ │ ├── MockSearchEngineSelectionCoordinator.swift │ │ │ ├── MockSearchHandlerRouteCoordinator.swift │ │ │ ├── MockSettingsDelegate.swift │ │ │ ├── MockSettingsFlowDelegate.swift │ │ │ ├── MockShareTab.swift │ │ │ ├── MockStatusBarScrollDelegate.swift │ │ │ ├── MockSummarizationChecker.swift │ │ │ ├── MockTabDisplayViewDragAndDropInteraction.swift │ │ │ ├── MockTabManager.swift │ │ │ ├── MockTabProviderProtocol.swift │ │ │ ├── MockTabScrollHandlerDelegate.swift │ │ │ ├── MockTabWebView.swift │ │ │ ├── MockTelemetryWrapper.swift │ │ │ ├── MockTemporaryDocument.swift │ │ │ ├── MockTests │ │ │ │ ├── ClientSyncManagerTests.swift │ │ │ │ └── MockUserDefaultsTests.swift │ │ │ ├── MockThemeManager.swift │ │ │ ├── MockTraitCollection.swift │ │ │ ├── MockUIDevice.swift │ │ │ ├── MockURLBarView.swift │ │ │ ├── MockURLProtocol.swift │ │ │ ├── MockURLResponse.swift │ │ │ ├── MockUserDefaults.swift │ │ │ ├── MockUserNotificationCenter.swift │ │ │ ├── MockWKUIHandler.swift │ │ │ ├── MockWebKit.swift │ │ │ ├── MockWindowManager.swift │ │ │ ├── MockZoomStore.swift │ │ │ ├── MockablePinnedSites.swift │ │ │ └── UIPanGestureRecognizerMock.swift │ │ ├── NativeErrorPage │ │ │ ├── NativeErrorPageFeatureFlagTests.swift │ │ │ ├── NativeErrorPageStateTests.swift │ │ │ └── NativeErrorPageViewControllerTests.swift │ │ ├── Nimbus │ │ │ ├── NimbusFeatureFlagLayerTests.swift │ │ │ ├── NimbusIntegrationTests.swift │ │ │ └── RecordedNimbusContextTests.swift │ │ ├── NotificationSurface │ │ │ ├── NotificationSurfaceManagerTests.swift │ │ │ └── OnboardingNotificationCardHelperTests.swift │ │ ├── OnboardingTests │ │ │ ├── Helpers │ │ │ │ └── NimbusOnboardingTestingConfigUtility.swift │ │ │ ├── IntroViewControllerTests.swift │ │ │ ├── IntroViewModelTests.swift │ │ │ ├── Mocks │ │ │ │ ├── MockGleanPlumbEvaluationUtility.swift │ │ │ │ └── MockOnboardingCardDelegate.swift │ │ │ ├── NimbusOnboardingFeatureLayerTests.swift │ │ │ ├── NimbusOnboardingKitFeatureLayerTests.swift │ │ │ ├── OnboardingButtonActionTests.swift │ │ │ ├── OnboardingKitCardInfoModel.swift │ │ │ ├── OnboardingServiceTests.swift │ │ │ ├── OnboardingTelemetryDelegationTests.swift │ │ │ ├── OnboardingTelemetryUtilityTests.swift │ │ │ ├── OnboardingViewControllerProtocolTests.swift │ │ │ └── UpdateViewModelTests.swift │ │ ├── OverlayModeManagerTests.swift │ │ ├── PasswordGenerator │ │ │ ├── PasswordGeneratorStateTests.swift │ │ │ ├── PasswordGeneratorTelemetryTests.swift │ │ │ └── PasswordGeneratorViewControllerTests.swift │ │ ├── PasswordManagerDataSourceHelperTests.swift │ │ ├── PasswordManagerSelectionHelperTests.swift │ │ ├── PasswordManagerViewModelTests.swift │ │ ├── PrefsTests.swift │ │ ├── PrivateBrowsingTelemetryTests.swift │ │ ├── ReaderModeStyleTests.swift │ │ ├── RelativeDatesTests.swift │ │ ├── RemoteSettings │ │ │ ├── ASSearchEngineUtilitiesTests.swift │ │ │ ├── MockLocaleProvider.swift │ │ │ ├── RemoteDataTypeTests.swift │ │ │ ├── RemoteSettingsFetchConfigTests.swift │ │ │ └── SearchPrefsMigrationTests.swift │ │ ├── RustSyncManagerTests.swift │ │ ├── ScreenshotHelperTests.swift │ │ ├── Search │ │ │ ├── DefaultRecentSearchProviderTests.swift │ │ │ ├── MockRecentSearchProvider.swift │ │ │ ├── MockRustFirefoxSuggest.swift │ │ │ ├── MockTrendingSearchEngine.swift │ │ │ ├── MockTrendingSearchProvider.swift │ │ │ ├── SearchTelemetryTests.swift │ │ │ ├── SearchViewControllerTests.swift │ │ │ ├── SearchViewModelTests.swift │ │ │ └── TrendingSearchClientTests.swift │ │ ├── SearchBarLocationSaverTests.swift │ │ ├── Settings │ │ │ ├── AppSettingsTableViewControllerTests.swift │ │ │ ├── BrowsingSettingsViewControllerTests.swift │ │ │ ├── HomePageSettingViewControllerTests.swift │ │ │ ├── SearchBarSettingsViewModelTests.swift │ │ │ ├── SettingsTelemetryTests.swift │ │ │ ├── SummarizeSettingsViewControllerTests.swift │ │ │ ├── ThemeSettingsControllerTests.swift │ │ │ └── VersionSettingTests.swift │ │ ├── Sharing │ │ │ ├── HomePageActivityTests.swift │ │ │ ├── ShareManagerTests.swift │ │ │ ├── ShareTelemetryActivityItemProviderTests.swift │ │ │ ├── ShareTelemetryTests.swift │ │ │ ├── TitleActivityItemProviderTests.swift │ │ │ ├── TitleSubtitleActivityItemProviderTests.swift │ │ │ └── URLActivityItemProviderTests.swift │ │ ├── SponsoredTileTelemetryTests.swift │ │ ├── StartAtHome │ │ │ ├── StartAtHomeHelperTests.swift │ │ │ └── StartAtHomeMiddlewareTests.swift │ │ ├── StatusBarOverlayTests.swift │ │ ├── StringExtensionsTests.swift │ │ ├── SummarizerConfigManagerTests.swift │ │ ├── SurveySurface │ │ │ └── SurveySurfaceManagerTests.swift │ │ ├── TPStatsBlocklistsTests.swift │ │ ├── TabCellTests.swift │ │ ├── TabManagement │ │ │ ├── Mocks │ │ │ │ ├── MockDiskImageStore.swift │ │ │ │ ├── MockTabDataStore.swift │ │ │ │ └── MockTabSessionStore.swift │ │ │ ├── Tab+ChangeUserAgentTests.swift │ │ │ ├── TabEventHandlerTests.swift │ │ │ ├── TabManagerTests.swift │ │ │ └── TabsTelemetryTests.swift │ │ ├── TabTests.swift │ │ ├── TabTray │ │ │ ├── Redux │ │ │ │ └── TabPeekStateTests.swift │ │ │ ├── RemoteTabPanelStateTests.swift │ │ │ ├── RemoteTabPanelTests.swift │ │ │ ├── RemoteTabsMiddlewareTests.swift │ │ │ ├── TabDisplayDiffableDataSourceTests.swift │ │ │ ├── TabDisplayPanelTests.swift │ │ │ ├── TabManagerMiddlewareTests.swift │ │ │ ├── TabTrayStateTests.swift │ │ │ ├── TabTrayViewControllerTests.swift │ │ │ └── TabsPanelStateTests.swift │ │ ├── TabWebViewTests.swift │ │ ├── Telemetry │ │ │ ├── ActionExtensionTelemetryTests.swift │ │ │ ├── ContextMenuTelemetryTests.swift │ │ │ ├── FxSuggestTelemetryTests.swift │ │ │ ├── HistoryDeletionUtilityTelemetryTests.swift │ │ │ ├── MainMenuTelemetryTests.swift │ │ │ ├── NotificationManagerTelemetryTests.swift │ │ │ ├── StoriesFeedTelemetryTests.swift │ │ │ ├── TermsOfServiceTelemetryTests.swift │ │ │ ├── ToastTelemetryTests.swift │ │ │ ├── UserTelemetryTests.swift │ │ │ └── ZoomTelemetryTests.swift │ │ ├── TelemetryContextualIdentifierTests.swift │ │ ├── TelemetryWrapperTests.swift │ │ ├── TemporaryDocumentTests.swift │ │ ├── TermsOfUse │ │ │ ├── TermsOfUseCoordinatorTests.swift │ │ │ ├── TermsOfUseLinkTypeTests.swift │ │ │ ├── TermsOfUseMiddlewareTests.swift │ │ │ ├── TermsOfUseStateTests.swift │ │ │ ├── TermsOfUseTelemetryTests.swift │ │ │ └── ToUExperiencePointsCalculatorTests.swift │ │ ├── TestHistory.swift │ │ ├── TestingHelperClasses │ │ │ └── URLProtocolStub.swift │ │ ├── Toolbar │ │ │ ├── AddressBarStateTests.swift │ │ │ ├── AddressToolbarContainerModelTests.swift │ │ │ ├── NavigationBarStateTests.swift │ │ │ ├── ToolbarMiddlewareTests.swift │ │ │ └── ToolbarStateTests.swift │ │ ├── TrackingProtectionTests │ │ │ ├── BlockedTrackersTableViewControllerTests.swift │ │ │ ├── CertificatesViewModelTests.swift │ │ │ ├── TrackingProtectionModelTests.swift │ │ │ └── TrackingProtectionStateTests.swift │ │ ├── TranslationsTests │ │ │ ├── ASTranslationModelsFetcherTests.swift │ │ │ ├── BridgeTests.swift │ │ │ ├── FakeBridgeEndpoint.swift │ │ │ ├── LanguageDetectorTests.swift │ │ │ ├── MockLanguageDetector.swift │ │ │ ├── MockLanguageSampleSource.swift │ │ │ ├── MockRemoteSettingsClient.swift │ │ │ ├── MockRoute.swift │ │ │ ├── MockTranslationModelsFetcher.swift │ │ │ ├── MockTranslationsSchemeHandler.swift │ │ │ ├── MockTranslationsService.swift │ │ │ ├── MockTranslationsTelemetry.swift │ │ │ ├── TinyRouterTests.swift │ │ │ ├── TranslationsEngineTests.swift │ │ │ ├── TranslationsMiddlewareTests.swift │ │ │ ├── TranslationsSchemeHandlerTests.swift │ │ │ ├── TranslationsServiceTests.swift │ │ │ ├── TranslationsTelemetryTests.swift │ │ │ └── TranslationsVersionHelperTests.swift │ │ ├── Utils │ │ │ ├── DefaultBackgroundTabLoaderTests.swift │ │ │ ├── GeneralizedImageFetcherTests.swift │ │ │ ├── GleanHttpUploaderTests.swift │ │ │ ├── GleanOhttpUploaderTests.swift │ │ │ ├── HistoryDeletionUtilityTests.swift │ │ │ ├── JSAlertThrottlerTests.swift │ │ │ ├── MainThreadThrottlerTests.swift │ │ │ ├── Mocks │ │ │ │ ├── MockASOHttpManager.swift │ │ │ │ └── MockGleanPingUploadRequest.swift │ │ │ ├── SponsoredContentFilterUtilityTests.swift │ │ │ └── StoreTestUtility.swift │ │ ├── Wallpaper │ │ │ ├── Mocks │ │ │ │ ├── MockURLSession.swift │ │ │ │ ├── NetworkingMock.swift │ │ │ │ └── WallpaperManagerMock.swift │ │ │ ├── TestDataAndTestDataProviders │ │ │ │ ├── JSONFiles │ │ │ │ │ ├── wallpaperAvailabilityEnd.json │ │ │ │ │ ├── wallpaperAvailabilityStart.json │ │ │ │ │ ├── wallpaperBadLastUpdatedDate.json │ │ │ │ │ ├── wallpaperBadTextColor.json │ │ │ │ │ ├── wallpaperGoodData.json │ │ │ │ │ ├── wallpaperNewUpdates.json │ │ │ │ │ ├── wallpaperNoAvailabilityRange.json │ │ │ │ │ ├── wallpaperNoLearnMoreURL.json │ │ │ │ │ └── wallpaperNoLocales.json │ │ │ │ └── Protocols │ │ │ │ │ ├── WallpaperJSONTestProvider.swift │ │ │ │ │ ├── WallpaperMetadataTestProvider.swift │ │ │ │ │ └── WallpaperTestDataProvider.swift │ │ │ ├── WallpaperCollectionAvailabilityTests.swift │ │ │ ├── WallpaperDataServiceTests.swift │ │ │ ├── WallpaperMetadataTrackerTests.swift │ │ │ ├── WallpaperMigrationUtilityTests.swift │ │ │ ├── WallpaperNetworkingModuleTests.swift │ │ │ ├── WallpaperNetworkingTests.swift │ │ │ ├── WallpaperSelectorViewModelTests.swift │ │ │ ├── WallpaperSettingsViewModelTests.swift │ │ │ └── WallpaperURLProviderTests.swift │ │ ├── WebServerTests.swift │ │ ├── WebviewTelemetryTests.swift │ │ ├── WebviewViewControllerTests.swift │ │ ├── WindowManagerTests.swift │ │ ├── XCTestCaseExtensions.swift │ │ ├── XCTestCaseRootViewController.swift │ │ ├── ZoomPageManagerTests.swift │ │ ├── defaultOnlyTestList.json │ │ ├── image.gif │ │ └── image.png │ │ ├── ExperimentIntegrationTests.xctestplan │ │ ├── ExperimentIntegrationTests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── generate_smoke_tests.py │ │ ├── get_specific_device_udid.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── poetry.lock │ │ ├── pyproject.toml │ │ ├── pytest.ini │ │ ├── test_generic.py │ │ ├── test_messaging.py │ │ ├── tests.md │ │ ├── variables.yaml │ │ ├── xcodebuild.py │ │ └── xcrun.py │ │ ├── FullFunctionalTestPlan.xctestplan │ │ ├── L10nSnapshotTests.xctestplan │ │ ├── L10nSnapshotTests │ │ ├── Info.plist │ │ ├── L10nBaseSnapshotTests.swift │ │ ├── L10nMktSuiteSnapshotTests.swift │ │ ├── L10nPermissionStringsSnapshotTests.swift │ │ ├── L10nSuite1SnapshotTests.swift │ │ └── L10nSuite2SnapshotTests.swift │ │ ├── PerformanceTestPlan.xctestplan │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── SharedTests │ │ ├── ArrayExtensionTests.swift │ │ ├── DateExtensionsTests.swift │ │ ├── DeferredTestUtils.swift │ │ ├── DeferredTests.swift │ │ ├── HexExtensionsTests.swift │ │ ├── Info.plist │ │ ├── NSURLExtensionsTests.swift │ │ ├── ResultTests.swift │ │ ├── SupportUtilsTests.swift │ │ ├── UserAgentBuilderTests.swift │ │ ├── UserAgentTests.swift │ │ └── UtilsTests.swift │ │ ├── Smoketest.xctestplan │ │ ├── StoragePerfTests │ │ ├── Info.plist │ │ └── StoragePerfTests.swift │ │ ├── StorageTests │ │ ├── CertTests.swift │ │ ├── DiskImageStoreTests.swift │ │ ├── Info.plist │ │ ├── MockFiles.swift │ │ ├── RustAutofillTests.swift │ │ ├── RustLoginsTests.swift │ │ ├── RustRemoteTabsTests.swift │ │ ├── StorageTestUtils.swift │ │ ├── TestBrowserDB.swift │ │ ├── TestSQLitePinnedSites.swift │ │ ├── TestSQLiteReadingList.swift │ │ ├── TestSwiftData.swift │ │ ├── ZoomLevelStoreTests.swift │ │ ├── fixtures │ │ │ └── v33.db │ │ ├── testcert1.pem │ │ └── testcert2.pem │ │ ├── SyncIntegrationTestPlan.xctestplan │ │ ├── SyncIntegrationTests │ │ ├── .gitignore │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── README.md │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── pytest.ini │ │ ├── test_bookmark.js │ │ ├── test_bookmark_desktop.js │ │ ├── test_bookmark_login.js │ │ ├── test_history.js │ │ ├── test_history_desktop.js │ │ ├── test_integration.py │ │ ├── test_password.js │ │ ├── test_password_desktop.js │ │ ├── test_tabs.js │ │ ├── test_tabs_desktop.js │ │ ├── tps.py │ │ ├── xcodebuild.py │ │ └── xcrun.py │ │ ├── SyncTelemetryTests │ │ ├── FxALoginRegistrationTelemetryTests.swift │ │ └── Info.plist │ │ ├── SyncTests │ │ ├── CryptoTests.swift │ │ ├── Info.plist │ │ ├── RustSyncManagerAPITests.swift │ │ └── SyncTests-Bridging-Header.h │ │ ├── TAESmokeTestPlan.xctestplan │ │ ├── UITests │ │ ├── AuthenticationTests.swift │ │ ├── ClearPrivateDataTests.swift │ │ ├── DomainAutocompleteTests.swift │ │ ├── Global.swift │ │ ├── HistoryTests.swift │ │ ├── Info.plist │ │ ├── JSPrompt.html │ │ ├── KIFHelper.js │ │ ├── LoginInputTests.swift │ │ ├── LoginManagerTests.swift │ │ ├── MenuTests.swift │ │ ├── NavigationDelegateTests.swift │ │ ├── ReadingListTest.swift │ │ ├── SecurityTests.swift │ │ ├── SessionRestoreTests.swift │ │ ├── ToolbarTests.swift │ │ ├── TrackingProtectionTests.swift │ │ ├── UITests-Bridging-Header.h │ │ ├── ViewMemoryLeakTests.swift │ │ ├── blobURL.html │ │ ├── findPage.html │ │ ├── firefoxScheme.html │ │ ├── localhostLoad.html │ │ ├── loginForm.html │ │ ├── navigationDelegate.html │ │ ├── noTitle.html │ │ ├── numberedPage.html │ │ ├── readablePage.html │ │ ├── readerContent.html │ │ ├── scrollablePage.html │ │ └── youtube.ico │ │ ├── UnitTest.xctestplan │ │ └── XCUITests │ │ ├── A11yHomePageTests.swift │ │ ├── A11yOnboardingTests.swift │ │ ├── A11ySearchTest.swift │ │ ├── A11ySettingsTests.swift │ │ ├── A11yTabTrayTests.swift │ │ ├── A11yUtils.swift │ │ ├── ActivityStreamTest.swift │ │ ├── AuthenticationTest.swift │ │ ├── BaseTestCase.swift │ │ ├── BookmarksTests.swift │ │ ├── BrowsingPDFTests.swift │ │ ├── C_AddressesTests.swift │ │ ├── ClipBoardTests.swift │ │ ├── CookiePersistenceTests.swift │ │ ├── CopiedLinksTests.swift │ │ ├── CreditCardsTests.swift │ │ ├── DataManagementTests.swift │ │ ├── DatabaseFixtureTest.swift │ │ ├── DefaultBrowserTests.swift │ │ ├── DesktopModeTests.swift │ │ ├── DisplaySettingsTests.swift │ │ ├── DomainAutocompleteTests.swift │ │ ├── DownloadsTests.swift │ │ ├── DragAndDropTests.swift │ │ ├── EngagementNotificationTests.swift │ │ ├── ExperimentIntegrationTests.swift │ │ ├── FeatureFlaggedTestBase.swift │ │ ├── FindInPageTests.swift │ │ ├── FirefoxSuggestTest.swift │ │ ├── FxScreenGraph.swift │ │ ├── FxScreenGraphTests.swift │ │ ├── FxUserState.swift │ │ ├── HistoryTests.swift │ │ ├── HomeButtonTests.swift │ │ ├── HomePageSettingsUITest.swift │ │ ├── HomepageSearchBarTests.swift │ │ ├── Info.plist │ │ ├── IntegrationTests.swift │ │ ├── JumpBackInTests.swift │ │ ├── LibraryTests.swift │ │ ├── LoginsTests.swift │ │ ├── MailAppSettingsTests.swift │ │ ├── MicrosurveyTests.swift │ │ ├── MultiWindowTests.swift │ │ ├── NavigationRegistry.swift │ │ ├── NavigationTest.swift │ │ ├── NewTabSettings.swift │ │ ├── NightModeTests.swift │ │ ├── NoImageTests.swift │ │ ├── OnboardingTests.swift │ │ ├── OpeningScreenTests.swift │ │ ├── PageScreens │ │ ├── AddCreditCardScreen.swift │ │ ├── AddressScreen.swift │ │ ├── AutofillFormScreen.swift │ │ ├── BrowserScreen.swift │ │ ├── ContextMenuScreen.swift │ │ ├── CreditCardsScreen.swift │ │ ├── DownloadScreen.swift │ │ ├── EditCreditCardScreen.swift │ │ ├── FindInPageScreen.swift │ │ ├── FirefoxHomePageScreen.swift │ │ ├── HistoryScreen.swift │ │ ├── HomaPageScreen.swift │ │ ├── HomepageSettingsScreen.swift │ │ ├── LibraryScreen.swift │ │ ├── LoginSettingsScreen.swift │ │ ├── MainMenuScreen.swift │ │ ├── NewTabSettingsScreen.swift │ │ ├── NewTabsScreen.swift │ │ ├── OnboardingScreen.swift │ │ ├── PDFScreen.swift │ │ ├── PhotonActionSheetScreen.swift │ │ ├── ReadingListScreen.swift │ │ ├── SSLWarningScreen.swift │ │ ├── SaveLoginAlertScreen.swift │ │ ├── SettingScreen.swift │ │ ├── SettingsHomepageScreen.swift │ │ ├── TabTrayScreen.swift │ │ ├── ToolbarScreen.swift │ │ ├── TopSitesScreen.swift │ │ ├── TrackingProtectionScreen.swift │ │ ├── TranslationSettingsScreen.swift │ │ ├── ViewCreditCardScreen.swift │ │ ├── WebFormScreen.swift │ │ ├── WebsiteDataScreen.swift │ │ └── ZoomBarScreen.swift │ │ ├── PerformanceTests.swift │ │ ├── PhotonActionSheetTests.swift │ │ ├── PrintTests.swift │ │ ├── PrivateBrowsingTest.swift │ │ ├── ReadingListTests.swift │ │ ├── ReportSiteTests.swift │ │ ├── ScreenGraphTest.swift │ │ ├── SearchSettingsUITest.swift │ │ ├── SearchTest.swift │ │ ├── Selectors │ │ ├── AddCreditCardSelectors.swift │ │ ├── AddressSelectors.swift │ │ ├── AutofillSelectors.swift │ │ ├── BrowserSelectors.swift │ │ ├── ContextMenuSelectors.swift │ │ ├── CreditCardsSelectors.swift │ │ ├── DownloadsSelectorsSet.swift │ │ ├── EditCreditCardSelectors.swift │ │ ├── FindInPageSelectors.swift │ │ ├── FirefoxHomePageSelectors.swift │ │ ├── HistorySelectors.swift │ │ ├── HomePageSelectors.swift │ │ ├── HomepageSettingsSelector.swift │ │ ├── LibrarySelectors.swift │ │ ├── LoginSettingSelectors.swift │ │ ├── MainMenuSelectors.swift │ │ ├── NewTabSelectors.swift │ │ ├── NewTabSettingsSelectors.swift │ │ ├── OnboardingSelectorSet.swift │ │ ├── PDFSelectors.swift │ │ ├── PhotonActionSheetSelectors.swift │ │ ├── ReadingListSelectors.swift │ │ ├── SSLWarningSelectors.swift │ │ ├── SaveLoginAlertSelectors.swift │ │ ├── SelectorHelper.swift │ │ ├── SelectorShortcuts.swift │ │ ├── SettingsHomePageSelectors.swift │ │ ├── SettingsSelectors.swift │ │ ├── TabTraySelectors.swift │ │ ├── ToolbarSelectors.swift │ │ ├── TopSitesSelectors.swift │ │ ├── TrackingProtectionSelectors.swift │ │ ├── TranslationSelectors.swift │ │ ├── ViewCreditCardSelectors.swift │ │ ├── WebFormSelectors.swift │ │ ├── WebsiteDataSelectorSet.swift │ │ └── ZoomBarSelectors.swift │ │ ├── SettingsTests.swift │ │ ├── ShareLongPressTests.swift │ │ ├── ShareMenuTests.swift │ │ ├── ShareToolbarTests.swift │ │ ├── SiteLoadTest.swift │ │ ├── StoryTests.swift │ │ ├── SwipingTabsTests.swift │ │ ├── SyncFAUITests.swift │ │ ├── TabCounterTests.swift │ │ ├── TabsTests.swift │ │ ├── ThirdPartySearchTest.swift │ │ ├── TodayWidgetTests.swift │ │ ├── ToolbarMenuTests.swift │ │ ├── ToolbarTest.swift │ │ ├── TrackingProtectionTests.swift │ │ ├── TranslationTests.swift │ │ ├── URLValidationTests.swift │ │ ├── UrlBarTests.swift │ │ ├── XCUITests-Bridging-Header.h │ │ ├── ZoomingTests.swift │ │ ├── find_test_with_flag.sh │ │ ├── registerCommonNavigation.swift │ │ ├── registerContextMenuNavigation.swift │ │ ├── registerFxAccountNavigation.swift │ │ ├── registerHomePanelNavigation.swift │ │ ├── registerLibraryPanelNavigation.swift │ │ ├── registerMiscellanousActions.swift │ │ ├── registerMiscellanousNavigation.swift │ │ ├── registerMobileNavigation.swift │ │ ├── registerOnboardingNavigation.swift │ │ ├── registerSettingsNavigation.swift │ │ ├── registerTabMenuNavigation.swift │ │ ├── registerTabTrayNavigation.swift │ │ ├── registerToolbarNavigation.swift │ │ ├── registerTrackingProtection.swift │ │ ├── registerUrlBarNavigation.swift │ │ ├── registerZoomNavigation.swift │ │ └── run_tests_with_flag.sh ├── import-strings.sh ├── l10n-screenshots.sh ├── l10n_comments.txt ├── nimbus-features │ ├── addressAutofillFeature.yaml │ ├── appIconSelectionFeature.yaml │ ├── appleSummarizerFeature.yaml │ ├── deeplinkOptimizationRefactorFeature.yaml │ ├── defaultZoomFeature.yaml │ ├── downloadLiveActivitiesFeature.yaml │ ├── feltPrivacyFeature.yaml │ ├── firefoxJpGuideDefaultSite.yaml │ ├── firefoxSuggestFeature.yaml │ ├── generalFeatures.yaml │ ├── hntSponsoredShortcutsFeature.yaml │ ├── homepageRebuildFeature.yaml │ ├── homepageRedesignFeature.yaml │ ├── hostedSummarizerFeature.yaml │ ├── menuRefactorFeature.yaml │ ├── messaging │ │ ├── messaging-evergreen-messages.fml.yaml │ │ ├── messaging-firefox-ios.fml.yaml │ │ └── messaging.fml.yaml │ ├── messagingFeature.yaml │ ├── microsurveyFeature.yaml │ ├── nativeErrorPageFeature.yaml │ ├── newAddressBarMenu.yaml │ ├── newAppearanceMenu.yaml │ ├── onboardingFrameworkFeature.yaml │ ├── recentSearchesFeature.yaml │ ├── relayIntegrationFeature.yaml │ ├── rustFxAKeychainEnabled.yaml │ ├── searchFeature.yaml │ ├── sentFromFirefoxFeature.yaml │ ├── splashScreenFeature.yaml │ ├── spotlightSearchFeature.yaml │ ├── startAtHomeFeature.yaml │ ├── tabScrollRefactorFeature.yaml │ ├── tabTrayUIExperiments.yaml │ ├── toolbarRefactorFeature.yaml │ ├── tosFeature.yaml │ ├── touFeature.yaml │ ├── trackingProtectionRefactor.yaml │ ├── translationsFeature.yaml │ ├── trendingSearchesFeature.yaml │ ├── unifiedAds.yaml │ ├── updatedPasswordManager.yaml │ └── webEngineIntegrationRefactor.yaml ├── nimbus.fml.yaml └── sticker │ ├── Info.plist │ └── StickersCatalog.xcstickers │ ├── Contents.json │ ├── Sticker Pack.stickerpack │ ├── 1.sticker │ │ ├── 1.png │ │ └── Contents.json │ ├── 10.sticker │ │ ├── 10.png │ │ └── Contents.json │ ├── 11.sticker │ │ ├── 11.png │ │ └── Contents.json │ ├── 12.sticker │ │ ├── 12.png │ │ └── Contents.json │ ├── 13.sticker │ │ ├── 13.png │ │ └── Contents.json │ ├── 14.sticker │ │ ├── 14.png │ │ └── Contents.json │ ├── 15.sticker │ │ ├── 15.png │ │ └── Contents.json │ ├── 16.sticker │ │ ├── 16.png │ │ └── Contents.json │ ├── 17.sticker │ │ ├── 17.png │ │ └── Contents.json │ ├── 18.sticker │ │ ├── 18.png │ │ └── Contents.json │ ├── 19.sticker │ │ ├── 19.png │ │ └── Contents.json │ ├── 2.sticker │ │ ├── 2.png │ │ └── Contents.json │ ├── 20.sticker │ │ ├── 20.png │ │ └── Contents.json │ ├── 21.sticker │ │ ├── 21.png │ │ └── Contents.json │ ├── 3.sticker │ │ ├── 3.png │ │ └── Contents.json │ ├── 4.sticker │ │ ├── 4.png │ │ └── Contents.json │ ├── 5.sticker │ │ ├── 5.png │ │ └── Contents.json │ ├── 6.sticker │ │ ├── 6.png │ │ └── Contents.json │ ├── 7.sticker │ │ ├── 7.png │ │ └── Contents.json │ ├── 8.sticker │ │ ├── 8.png │ │ └── Contents.json │ ├── 9.sticker │ │ ├── 9.png │ │ └── Contents.json │ └── Contents.json │ └── iMessage App Icon.stickersiconset │ ├── Contents.json │ ├── icon-app-itunes-1024x1024.png │ ├── icon-messages-app-27x20@2x.png │ ├── icon-messages-app-27x20@3x.png │ ├── icon-messages-app-iPadAir-67x50@2x.png │ ├── icon-messages-app-iPadAir-74x55@2x.png │ ├── icon-messages-app-iPhone-60x45@2x.png │ ├── icon-messages-app-iPhone-60x45@3x.png │ ├── icon-messages-appstore-1024x768.png │ ├── icon-messages-transcript-32x24@2x.png │ ├── icon-messages-transcript-32x24@3x.png │ ├── icon-settings-29x29@2x 1.png │ ├── icon-settings-29x29@2x.png │ └── icon-settings-29x29@3x.png ├── focus-ios ├── .gitignore ├── .swiftlint.yml ├── Blockzilla.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDETemplateMacros.plist │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ └── xcschemes │ │ ├── ContentBlocker.xcscheme │ │ ├── Focus (Enterprise).xcscheme │ │ ├── Focus.xcscheme │ │ ├── FocusIntentExtension.xcscheme │ │ ├── FocusMarketingTests.xcscheme │ │ ├── FocusSnapshotTests.xcscheme │ │ ├── FocusWidgetsExtension.xcscheme │ │ ├── Klar (Enterprise).xcscheme │ │ ├── Klar.xcscheme │ │ ├── KlarMarketingTests.xcscheme │ │ ├── KlarSnapshotTests.xcscheme │ │ └── ShareExtension.xcscheme ├── Blockzilla │ ├── Ads.js │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small-50.png │ │ │ ├── icon-small-50@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ ├── ios-marketing.png │ │ │ ├── notification-icon@2x.png │ │ │ ├── notification-icon@3x.png │ │ │ ├── notification-icon~ipad.png │ │ │ └── notification-icon~ipad@2x.png │ │ ├── AppIcon.beta.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small-50.png │ │ │ ├── icon-small-50@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ ├── ios-marketing.png │ │ │ ├── notification-icon@2x.png │ │ │ ├── notification-icon@3x.png │ │ │ ├── notification-icon~ipad.png │ │ │ └── notification-icon~ipad@2x.png │ │ ├── AppIcon.dev.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small-50.png │ │ │ ├── icon-small-50@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ ├── ios-marketing.png │ │ │ ├── notification-icon@2x.png │ │ │ ├── notification-icon@3x.png │ │ │ ├── notification-icon~ipad.png │ │ │ └── notification-icon~ipad@2x.png │ │ ├── Contents.json │ │ ├── LaunchScreenBackground (required here) │ │ │ ├── Contents.json │ │ │ └── LaunchBackground.colorset │ │ │ │ └── Contents.json │ │ ├── about_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Information.pdf │ │ │ └── about_icon.pdf │ │ ├── background_ipad_landscape.imageset │ │ │ ├── Contents.json │ │ │ ├── Tab Strip - iPad - Landscape - Dark@2x.png │ │ │ └── Tablet Dark Landscape.png │ │ ├── background_ipad_portrait.imageset │ │ │ ├── Contents.json │ │ │ ├── Tab Strip - iPad - Portrait - Dark@2x.png │ │ │ └── Tablet Dark Portrait.png │ │ ├── background_iphone_landscape.imageset │ │ │ ├── Contents.json │ │ │ ├── iPhone - Splash1@2x.png │ │ │ └── iPhone_Production_Dark Mode_Landscape.png │ │ ├── background_iphone_portrait.imageset │ │ │ ├── Contents.json │ │ │ ├── iPhone - Splash@2x.png │ │ │ └── iPhone_Production_Mode_Portrait.png │ │ ├── close-button.imageset │ │ │ ├── Contents.json │ │ │ ├── close-button.pdf │ │ │ └── close_button.pdf │ │ ├── custom_checkmark.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark.pdf │ │ ├── enabled-no.imageset │ │ │ ├── Contents.json │ │ │ ├── not-enabled-dark.pdf │ │ │ └── not-enabled-light.pdf │ │ ├── enabled-yes.imageset │ │ │ ├── Contents.json │ │ │ └── enabled-yes.pdf │ │ ├── erase_quick_action.imageset │ │ │ ├── Contents.json │ │ │ ├── erase_action.png │ │ │ ├── erase_action@2x.png │ │ │ └── erase_action@3x.png │ │ ├── highlight.imageset │ │ │ ├── Contents.json │ │ │ ├── Whats new.pdf │ │ │ └── highlight.pdf │ │ ├── icon_add_to_autocomplete.imageset │ │ │ ├── Add.pdf │ │ │ ├── Contents.json │ │ │ └── icon_add_to_autocomplete.pdf │ │ ├── icon_favicon.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_favicon.pdf │ │ │ └── icon_favicon2.pdf │ │ ├── icon_go_to_suggestion.imageset │ │ │ ├── Append.pdf │ │ │ ├── Contents.json │ │ │ └── icon_go_to_suggestion.pdf │ │ ├── icon_help.imageset │ │ │ ├── Contents.json │ │ │ ├── Help.pdf │ │ │ └── icon_help.pdf │ │ ├── icon_link.imageset │ │ │ ├── Contents.json │ │ │ ├── Link.pdf │ │ │ └── icon_link.pdf │ │ ├── icon_openwith_active.imageset │ │ │ ├── Contents.json │ │ │ ├── Share iOS.pdf │ │ │ └── icon_openwith_active.pdf │ │ ├── icon_page_action.imageset │ │ │ ├── Contents.json │ │ │ ├── More.pdf │ │ │ └── icon_page_action.pdf │ │ ├── icon_paste.imageset │ │ │ ├── Contents.json │ │ │ ├── Paste.pdf │ │ │ └── icon_paste.pdf │ │ ├── icon_paste_and_go.imageset │ │ │ ├── Contents.json │ │ │ ├── Paste.pdf │ │ │ └── icon_paste_and_go.pdf │ │ ├── icon_searchfor.imageset │ │ │ ├── Contents.json │ │ │ ├── Search.pdf │ │ │ └── icon_searchfor.pdf │ │ ├── icon_settings.imageset │ │ │ ├── Contents.json │ │ │ ├── Settings.pdf │ │ │ └── icon_settings.pdf │ │ ├── icon_shortcuts.imageset │ │ │ ├── Add Shortcut.pdf │ │ │ ├── Contents.json │ │ │ └── icon_shortcuts.pdf │ │ ├── icon_shortcuts_add.imageset │ │ │ ├── Add Shortcut.pdf │ │ │ ├── Contents.json │ │ │ └── icon_shortcuts.pdf │ │ ├── icon_shortcuts_remove.imageset │ │ │ ├── Contents.json │ │ │ ├── Remove Shortcut.pdf │ │ │ └── icon_shortcuts_remove.pdf │ │ ├── img_focus_launchscreen.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_logo_wordmark_light_horizontal.png │ │ │ ├── ic_logo_wordmark_light_horizontal@2x.png │ │ │ ├── ic_logo_wordmark_light_horizontal@3x.png │ │ │ ├── img_focus_wordmark.png │ │ │ ├── img_focus_wordmark@2x.png │ │ │ └── img_focus_wordmark@3x.png │ │ ├── img_focus_wordmark.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_logo_wordmark_light_horizontal.png │ │ │ ├── ic_logo_wordmark_light_horizontal@2x.png │ │ │ ├── ic_logo_wordmark_light_horizontal@3x.png │ │ │ ├── img_focus_wordmark.png │ │ │ ├── img_focus_wordmark@2x.png │ │ │ └── img_focus_wordmark@3x.png │ │ ├── img_klar_wordmark.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_logo_wordmark_light_horizontal_klar.png │ │ │ ├── ic_logo_wordmark_light_horizontal_klar@2x.png │ │ │ ├── ic_logo_wordmark_light_horizontal_klar@3x.png │ │ │ ├── img_klar_wordmark.png │ │ │ ├── img_klar_wordmark@2x.png │ │ │ └── img_klar_wordmark@3x.png │ │ ├── instructions-cog.imageset │ │ │ ├── Contents.json │ │ │ ├── instruction-settings-dark.pdf │ │ │ └── instruction-settings-light.pdf │ │ ├── instructions-safari.imageset │ │ │ ├── Contents.json │ │ │ ├── safari-instruction-dark.pdf │ │ │ └── safari-instruction-light.pdf │ │ ├── instructions-switch.imageset │ │ │ ├── Contents.json │ │ │ ├── dark-toggle.pdf │ │ │ └── light-toggle.pdf │ │ ├── onboarding_1.imageset │ │ │ ├── Contents.json │ │ │ ├── FRUE 2.png │ │ │ ├── FRUE 2@2x.png │ │ │ └── FRUE 2@3x.png │ │ ├── onboarding_2.imageset │ │ │ ├── Contents.json │ │ │ ├── FRUE 4.png │ │ │ ├── FRUE 4@2x.png │ │ │ └── FRUE 4@3x.png │ │ ├── onboarding_3.imageset │ │ │ ├── Contents.json │ │ │ ├── FRUE 1.png │ │ │ ├── FRUE 1@2x.png │ │ │ └── FRUE 1@3x.png │ │ ├── open_in_chrome_icon.imageset │ │ │ ├── Chrome.pdf │ │ │ ├── Contents.json │ │ │ └── open_in_chrome_icon.pdf │ │ ├── open_in_firefox_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Mozilla.pdf │ │ │ └── open_in_firefox_icon.pdf │ │ ├── open_in_safari_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Safari.pdf │ │ │ └── open_in_safari_icon.pdf │ │ ├── page_indicator.imageset │ │ │ ├── Contents.json │ │ │ └── page_indicator.pdf │ │ ├── request_desktop_site_activity.imageset │ │ │ ├── Contents.json │ │ │ ├── Desktop.pdf │ │ │ └── request_desktop_site_activity.pdf │ │ ├── request_mobile_site_activity.imageset │ │ │ ├── Contents.json │ │ │ ├── Mobile.pdf │ │ │ └── request_mobile_site_activity.pdf │ │ └── tracking_protection_gradient.imageset │ │ │ ├── Contents.json │ │ │ └── tracking_protection_gradient.pdf │ ├── Base.lproj │ │ └── Intents.intentdefinition │ ├── BrowserViewController.swift │ ├── Declarative DataSource │ │ ├── DataSource.swift │ │ └── SectionItem.swift │ ├── Extensions │ │ ├── CharacterSetExtensions.swift │ │ ├── ClosedRangeExtensions.swift │ │ ├── FileManagerExtensions.swift │ │ ├── StringExtensions.swift │ │ ├── UIPasteBoardExtensions.swift │ │ └── URLExtensions.swift │ ├── FindInPage.js │ ├── FullScreen.js │ ├── GleanUsageReportingMetricsService.swift │ ├── HomeViewController.swift │ ├── Info.plist │ ├── InternalSettings │ │ ├── InternalCrashReportingSettingsView.swift │ │ ├── InternalExperimentDetailView.swift │ │ ├── InternalExperimentsSettingsView.swift │ │ ├── InternalOnboardingSettingsView.swift │ │ ├── InternalSettings.swift │ │ ├── InternalSettingsView.swift │ │ └── InternalTelemetrySettingsView.swift │ ├── LaunchScreen.storyboard │ ├── Lib │ │ ├── DomainCompletion │ │ │ ├── DomainCompletion+ErrorMessage.swift │ │ │ └── DomainCompletion.swift │ │ ├── InsetTextField.swift │ │ ├── PaddedSwitch.swift │ │ ├── RequestHandler │ │ │ └── RequestHandler.swift │ │ └── TrackingProtection │ │ │ ├── Assets │ │ │ ├── postload.js │ │ │ └── preload.js │ │ │ └── TrackingProtection.swift │ ├── LocalWebServer │ │ ├── gpl.html │ │ ├── licenses.html │ │ └── style.css │ ├── Menu │ │ ├── Menu Extensions │ │ │ ├── MenuAction.swift │ │ │ ├── PhotonActionSheetItem+MenuAction.swift │ │ │ └── UIAction+MenuAction.swift │ │ ├── Old │ │ │ ├── PhotonActionSheet.swift │ │ │ └── PhotonActionSheetCell.swift │ │ └── Protocol │ │ │ ├── MenuActionable.swift │ │ │ ├── MenuItemProvider.swift │ │ │ └── WebMenuAction.swift │ ├── MetadataHelper.js │ ├── Modules │ │ └── WebView │ │ │ └── LegacyWebViewController.swift │ ├── NavigationPath.swift │ ├── Nimbus │ │ ├── NimbusExtensions.swift │ │ ├── NimbusWrapper.swift │ │ └── initial_experiments.json │ ├── Onboarding │ │ ├── OnboardingConstants.swift │ │ └── OnboardingFactory.swift │ ├── Pro Tips │ │ ├── ShareTrackersViewController.swift │ │ ├── TipManager.swift │ │ ├── TipViewController.swift │ │ └── TipsPageViewController.swift │ ├── ProfileIdentifier.swift │ ├── Search │ │ ├── OpenSearchParser.swift │ │ ├── SearchEngine.swift │ │ └── SearchEngineManager.swift │ ├── SearchSuggestions │ │ ├── OverlayView.swift │ │ └── SearchSuggestionsPromptView.swift │ ├── Settings │ │ ├── Cells │ │ │ ├── SettingsTableViewAccessoryCell.swift │ │ │ ├── SettingsTableViewCell.swift │ │ │ └── SettingsTableViewToggleCell.swift │ │ ├── Controller │ │ │ ├── AboutViewController.swift │ │ │ ├── AddCustomDomainViewController.swift │ │ │ ├── AddSearchEngineViewController.swift │ │ │ ├── AutocompleteCustomUrlViewController.swift │ │ │ ├── AutocompleteSettingViewController.swift │ │ │ ├── SafariInstructionsViewController.swift │ │ │ ├── SearchSettingsViewController.swift │ │ │ ├── SettingsContentViewController.swift │ │ │ └── SettingsViewController.swift │ │ ├── Helpers │ │ │ ├── BlockerEnabledDetector.swift │ │ │ └── BlockerToggle.swift │ │ └── View │ │ │ ├── ActionFooterView.swift │ │ │ └── InstructionsView.swift │ ├── ShortcutsPresenter.swift │ ├── Siri │ │ ├── SiriFavoriteViewController.swift │ │ └── SiriShortcuts.swift │ ├── Theme │ │ ├── SystemThemeDelegate.swift │ │ ├── Theme.swift │ │ ├── ThemeCells │ │ │ ├── ThemeTableViewAccessoryCell.swift │ │ │ └── ThemeTableViewToggleCell.swift │ │ └── ThemeViewController.swift │ ├── Tracking Protection │ │ ├── Model │ │ │ ├── SecureConnectionStatus.swift │ │ │ ├── ToggleItem.swift │ │ │ ├── TrackingProtectionManager.swift │ │ │ └── TrackingProtectionState.swift │ │ ├── Presentation │ │ │ ├── SheetMetrics.swift │ │ │ └── SheetModalViewController.swift │ │ ├── TrackingProtectionDelegate.swift │ │ ├── TrackingProtectionPageStats.swift │ │ ├── TrackingProtectionViewController.swift │ │ └── Views │ │ │ ├── ImageCell.swift │ │ │ ├── SubtitleCell.swift │ │ │ ├── SwitchTableViewCell.swift │ │ │ └── TrackingHeaderView.swift │ ├── UIComponents │ │ ├── AutocompleteTextField.swift │ │ ├── BrowserToolbar.swift │ │ ├── EditView.swift │ │ ├── ErrorPage │ │ │ ├── ErrorPage.swift │ │ │ └── errorPage.html │ │ ├── GradientBackgroundView.swift │ │ ├── GradientProgressBar.swift │ │ ├── HomeViewToolbar.swift │ │ ├── InsetButton.swift │ │ ├── ShortcutView+UIContextMenuInteractionDelegate.swift │ │ ├── SmartLabel.swift │ │ ├── SplashViewController.swift │ │ ├── Toast.swift │ │ ├── UIAlertController+Rename.swift │ │ ├── UIConstants.swift │ │ └── URLBar │ │ │ ├── Combine+UIControl.swift │ │ │ ├── URLBar.swift │ │ │ ├── URLBarDelegate.swift │ │ │ └── URLBarViewModel.swift │ ├── UsageProfileManager.swift │ ├── Utilities │ │ ├── AdsTelemetryHelper.swift │ │ ├── AuthenticationManager.swift │ │ ├── Debouncer.swift │ │ ├── FindInPageBar.swift │ │ ├── InternalURL.swift │ │ ├── KeyboardHelper.swift │ │ ├── KeyboardType.swift │ │ ├── LocalContentBlocker.swift │ │ ├── Metadata.swift │ │ ├── OnboardingTelemetryHelper.swift │ │ ├── OpenUtils.swift │ │ ├── SearchHistoryUtils.swift │ │ ├── SearchInContentTelemetry.swift │ │ ├── SearchSuggestClient.swift │ │ ├── SupportUtils.swift │ │ ├── TelemetryIntegration.swift │ │ ├── TelemetryManager.swift │ │ ├── TitleActivityItemProvider.swift │ │ ├── URIFixup.swift │ │ ├── UserDefault.swift │ │ └── WebCacheUtils.swift │ ├── WebEngineRefactorFlagManager.swift │ ├── af.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── am.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── an.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ar.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ast.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── az.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── be.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── bg.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── bn.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── br.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── bs.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ca.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── co.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── cs.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── cy.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── da.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── dsb.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── effective_tld_names.dat │ ├── el.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── en-CA.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── en-GB.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── en-US.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── eo.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── es-AR.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── es-CL.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── es-ES.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── es-MX.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── es.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── et.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── eu.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── fa.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── fi.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── fil.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── fr.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ga.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── gd.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── gl.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── gu-IN.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── he.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── hi-IN.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── hsb.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── hu.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── hy-AM.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ia.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── id.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── is.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── it.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ja.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ka.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── kab.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── kk.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── kn.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ko.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── lo.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── lt.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── lv.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── metrics.yaml │ ├── metrics_legacy.yaml │ ├── mr.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ms.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── my.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── nb.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ne-NP.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── nl.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── nn.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── nv.lproj │ │ └── InfoPlist.strings │ ├── pa-IN.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── pings.yaml │ ├── pl.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── pt-PT.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ro.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── scn.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ses.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── si.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── sk.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── sl.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── sq.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── sv.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ta.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── te.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── tg.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── th.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── topdomains.txt │ ├── tr.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── tt.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── uk.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── ur.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── uz.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── vi.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ ├── zh-CN.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings │ └── zh-TW.lproj │ │ ├── InfoPlist.strings │ │ ├── Intents.strings │ │ ├── Intro.strings │ │ └── Localizable.strings ├── BlockzillaPackage │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── AppShortcuts │ │ │ ├── Shortcut.swift │ │ │ ├── ShortcutView.swift │ │ │ ├── ShortcutViewModel.swift │ │ │ ├── ShortcutsManager.swift │ │ │ └── ShortcutsPersister.swift │ │ ├── DesignSystem │ │ │ ├── Assets.xcassets │ │ │ │ ├── Biometrics │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── faceid.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── faceid.svg │ │ │ │ │ └── touchid.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── touchid.svg │ │ │ │ ├── Contents.json │ │ │ │ ├── FindInPage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── find_next.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Find Next.pdf │ │ │ │ │ │ └── find_next.pdf │ │ │ │ │ └── find_previous.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Find Previous.pdf │ │ │ │ │ │ └── find_previous.pdf │ │ │ │ ├── Onboarding │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_history.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── History-24.pdf │ │ │ │ │ │ └── History-25.pdf │ │ │ │ │ ├── icon_mozilla.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Fox - Light Theme 2.2.pdf │ │ │ │ │ ├── icon_private_mode.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_private_mode.pdf │ │ │ │ │ │ └── icon_private_mode_dark.pdf │ │ │ │ │ └── icon_settings.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Settings.pdf │ │ │ │ │ │ └── icon_settings.pdf │ │ │ │ ├── Shortcuts │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── edit.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Edit-dark.pdf │ │ │ │ │ │ └── Edit.pdf │ │ │ │ │ └── icon_shortcuts_remove.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Remove Shortcut.pdf │ │ │ │ │ │ └── icon_shortcuts_remove.pdf │ │ │ │ ├── Tracking Protection │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Drawer │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_close.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ └── FILL.pdf │ │ │ │ │ │ └── icon_favicon.imageset │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ ├── icon_favicon.pdf │ │ │ │ │ │ │ └── icon_favicon2.pdf │ │ │ │ │ └── URLBar │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── connection_not_secure.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── connection_not_secure.pdf │ │ │ │ │ │ └── connection_not_secure_dark.pdf │ │ │ │ │ │ ├── icon_https.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Lock.pdf │ │ │ │ │ │ └── icon_https.pdf │ │ │ │ │ │ ├── tracking_protection.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Shield.pdf │ │ │ │ │ │ └── tracking_protection.pdf │ │ │ │ │ │ └── tracking_protection_off.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Shield blocked.pdf │ │ │ │ │ │ └── tracking_protection_off.pdf │ │ │ │ └── URLBar │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_back_active.imageset │ │ │ │ │ ├── Back.pdf │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_back_active.pdf │ │ │ │ │ ├── icon_cancel.imageset │ │ │ │ │ ├── Chevron left.pdf │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_cancel.pdf │ │ │ │ │ ├── icon_clear.imageset │ │ │ │ │ ├── Close in circle.pdf │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_clear.pdf │ │ │ │ │ ├── icon_delete.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Delete.pdf │ │ │ │ │ └── icon_delete.pdf │ │ │ │ │ ├── icon_forward_active.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Forward.pdf │ │ │ │ │ └── icon_forward_active.pdf │ │ │ │ │ ├── icon_hamburger_menu.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Menu.pdf │ │ │ │ │ └── icon_hamburger_menu.pdf │ │ │ │ │ ├── icon_refresh_menu.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Reload.pdf │ │ │ │ │ └── icon_refresh_menu.pdf │ │ │ │ │ └── icon_stop_menu.imageset │ │ │ │ │ ├── Close.pdf │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_stop_menu.pdf │ │ │ ├── Bundle+CurrentBundle.swift │ │ │ ├── Colors.xcassets │ │ │ │ ├── Above.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Accent.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── ActionButton.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── DefaultFont.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── ExtensionNotEnabled.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── FirstRunTitle.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Foundation.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── GradientBackground.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── GradientFirst.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── GradientSecond.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── GradientThird.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Grey10.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Grey30.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Grey50.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Grey70.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Grey90.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Ink90.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── InputPlaceholder.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchScreenBackground.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── LocationBar.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Magenta40.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Magenta70.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryButton.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryDark.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── PrimaryText.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Purple30.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Purple50.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Purple70.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Purple80.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Red60.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Scrim.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SearchGradientFirst.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SearchGradientFourth.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SearchGradientSecond.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SearchGradientThird.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SearchSuggestionButtonHighlight.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SecondaryButton.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── SecondaryText.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── Suggestion.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Preview Files │ │ │ │ ├── AppColorsView.swift │ │ │ │ ├── AppFontsView.swift │ │ │ │ └── AppImagesView.swift │ │ │ ├── UIColor+AppColors.swift │ │ │ ├── UIFont+AppFonts.swift │ │ │ └── UIImage+AppImages.swift │ │ ├── Licenses │ │ │ ├── LicenseList.swift │ │ │ ├── LicenseListView.swift │ │ │ ├── focus-ios.plist │ │ │ └── license-list.plist │ │ ├── Onboarding │ │ │ ├── DesignSystem │ │ │ │ ├── Color+AppColors.swift │ │ │ │ ├── Colors.xcassets │ │ │ │ │ ├── Accent.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── GradientFirst.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── GradientSecond.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── actionButton.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── secondOnboardingScreenBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── secondOnboardingScreenBottomButton.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── secondOnboardingScreenText.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Font+AppFonts.swift │ │ │ │ ├── Image+AppImages.swift │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_background.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── background_icon_dark.pdf │ │ │ │ │ └── icon_onboarding_background.pdf │ │ │ │ │ ├── icon_close.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_close.pdf │ │ │ │ │ └── icon_close_light.pdf │ │ │ │ │ ├── icon_hugging_focus.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── HuggingFocus.pdf │ │ │ │ │ ├── icon_logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_logo.pdf │ │ │ │ │ └── jiggle_mode_image.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── JiggleMode.pdf │ │ │ ├── Handler │ │ │ │ ├── Action.swift │ │ │ │ ├── OnboardingEventsHandlerV1.swift │ │ │ │ ├── OnboardingEventsHandlerV2.swift │ │ │ │ ├── OnboardingEventsHandling.swift │ │ │ │ ├── OnboardingVersion.swift │ │ │ │ └── ToolTipRoute.swift │ │ │ ├── OnboardingViewController.swift │ │ │ ├── PortraitHostingController.swift │ │ │ ├── Preview Files │ │ │ │ └── OnboardingPreview.swift │ │ │ ├── SwiftUI Onboarding │ │ │ │ ├── AccessibilityIdentifiers.swift │ │ │ │ ├── CardBannerView.swift │ │ │ │ ├── DefaultBrowserOnboardingView.swift │ │ │ │ ├── GetStartedOnboardingView.swift │ │ │ │ ├── OnboardingSearchWidgetView.swift │ │ │ │ ├── OnboardingView.swift │ │ │ │ ├── OnboardingViewModel.swift │ │ │ │ ├── ShowMeHowOnboardingView.swift │ │ │ │ ├── Styles │ │ │ │ │ ├── PrimaryButtonStyle.swift │ │ │ │ │ └── TextStyle.swift │ │ │ │ ├── TermsOfServiceView.swift │ │ │ │ └── UI Components │ │ │ │ │ ├── AttributedLinkText.swift │ │ │ │ │ └── WebView.swift │ │ │ └── Tooltip │ │ │ │ ├── TooltipTableViewCell.swift │ │ │ │ ├── TooltipView.swift │ │ │ │ └── TooltipViewController.swift │ │ ├── UIComponents │ │ │ └── AsyncImageView.swift │ │ └── UIHelpers │ │ │ ├── FaviIconGenerator.swift │ │ │ ├── ImageLoader.swift │ │ │ ├── UIApplication+Orientation.swift │ │ │ ├── UIButton+Background.swift │ │ │ ├── UIDeviceExtensions.swift │ │ │ ├── UIImageExtensions.swift │ │ │ ├── UILabelExtensions.swift │ │ │ ├── UIScreenExtensions.swift │ │ │ ├── UITableView+Dequeue.swift │ │ │ ├── UIViewController+Child.swift │ │ │ └── UIViewExtensions.swift │ └── Tests │ │ └── BlockzillaPackageTests │ │ └── AppShortcutsTests.swift ├── ContentBlocker │ ├── ActionRequestHandler.swift │ ├── Info.plist │ ├── af.lproj │ │ └── InfoPlist.strings │ ├── am.lproj │ │ └── InfoPlist.strings │ ├── an.lproj │ │ └── InfoPlist.strings │ ├── ar.lproj │ │ └── InfoPlist.strings │ ├── ast.lproj │ │ └── InfoPlist.strings │ ├── az.lproj │ │ └── InfoPlist.strings │ ├── be.lproj │ │ └── InfoPlist.strings │ ├── bg.lproj │ │ └── InfoPlist.strings │ ├── bn.lproj │ │ └── InfoPlist.strings │ ├── br.lproj │ │ └── InfoPlist.strings │ ├── bs.lproj │ │ └── InfoPlist.strings │ ├── ca.lproj │ │ └── InfoPlist.strings │ ├── co.lproj │ │ └── InfoPlist.strings │ ├── cs.lproj │ │ └── InfoPlist.strings │ ├── cy.lproj │ │ └── InfoPlist.strings │ ├── da.lproj │ │ └── InfoPlist.strings │ ├── de.lproj │ │ └── InfoPlist.strings │ ├── dsb.lproj │ │ └── InfoPlist.strings │ ├── el.lproj │ │ └── InfoPlist.strings │ ├── en-CA.lproj │ │ └── InfoPlist.strings │ ├── en-GB.lproj │ │ └── InfoPlist.strings │ ├── en-US.lproj │ │ └── InfoPlist.strings │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── enabled-detector.json │ ├── eo.lproj │ │ └── InfoPlist.strings │ ├── es-AR.lproj │ │ └── InfoPlist.strings │ ├── es-CL.lproj │ │ └── InfoPlist.strings │ ├── es-ES.lproj │ │ └── InfoPlist.strings │ ├── es-MX.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── eu.lproj │ │ └── InfoPlist.strings │ ├── fa.lproj │ │ └── InfoPlist.strings │ ├── fi.lproj │ │ └── InfoPlist.strings │ ├── fil.lproj │ │ └── InfoPlist.strings │ ├── fr.lproj │ │ └── InfoPlist.strings │ ├── ga.lproj │ │ └── InfoPlist.strings │ ├── gd.lproj │ │ └── InfoPlist.strings │ ├── gl.lproj │ │ └── InfoPlist.strings │ ├── gu-IN.lproj │ │ └── InfoPlist.strings │ ├── he.lproj │ │ └── InfoPlist.strings │ ├── hi-IN.lproj │ │ └── InfoPlist.strings │ ├── hsb.lproj │ │ └── InfoPlist.strings │ ├── hu.lproj │ │ └── InfoPlist.strings │ ├── hy-AM.lproj │ │ └── InfoPlist.strings │ ├── ia.lproj │ │ └── InfoPlist.strings │ ├── id.lproj │ │ └── InfoPlist.strings │ ├── is.lproj │ │ └── InfoPlist.strings │ ├── it.lproj │ │ └── InfoPlist.strings │ ├── ja.lproj │ │ └── InfoPlist.strings │ ├── ka.lproj │ │ └── InfoPlist.strings │ ├── kab.lproj │ │ └── InfoPlist.strings │ ├── kk.lproj │ │ └── InfoPlist.strings │ ├── kn.lproj │ │ └── InfoPlist.strings │ ├── ko.lproj │ │ └── InfoPlist.strings │ ├── lo.lproj │ │ └── InfoPlist.strings │ ├── lt.lproj │ │ └── InfoPlist.strings │ ├── lv.lproj │ │ └── InfoPlist.strings │ ├── mr.lproj │ │ └── InfoPlist.strings │ ├── ms.lproj │ │ └── InfoPlist.strings │ ├── my.lproj │ │ └── InfoPlist.strings │ ├── nb.lproj │ │ └── InfoPlist.strings │ ├── ne-NP.lproj │ │ └── InfoPlist.strings │ ├── nl.lproj │ │ └── InfoPlist.strings │ ├── nn.lproj │ │ └── InfoPlist.strings │ ├── pa-IN.lproj │ │ └── InfoPlist.strings │ ├── pl.lproj │ │ └── InfoPlist.strings │ ├── pt-BR.lproj │ │ └── InfoPlist.strings │ ├── pt-PT.lproj │ │ └── InfoPlist.strings │ ├── ro.lproj │ │ └── InfoPlist.strings │ ├── ru.lproj │ │ └── InfoPlist.strings │ ├── scn.lproj │ │ └── InfoPlist.strings │ ├── ses.lproj │ │ └── InfoPlist.strings │ ├── si.lproj │ │ └── InfoPlist.strings │ ├── sk.lproj │ │ └── InfoPlist.strings │ ├── sl.lproj │ │ └── InfoPlist.strings │ ├── sq.lproj │ │ └── InfoPlist.strings │ ├── sv.lproj │ │ └── InfoPlist.strings │ ├── ta.lproj │ │ └── InfoPlist.strings │ ├── te.lproj │ │ └── InfoPlist.strings │ ├── tg.lproj │ │ └── InfoPlist.strings │ ├── th.lproj │ │ └── InfoPlist.strings │ ├── tr.lproj │ │ └── InfoPlist.strings │ ├── tt.lproj │ │ └── InfoPlist.strings │ ├── uk.lproj │ │ └── InfoPlist.strings │ ├── ur.lproj │ │ └── InfoPlist.strings │ ├── uz.lproj │ │ └── InfoPlist.strings │ ├── vi.lproj │ │ └── InfoPlist.strings │ ├── web-fonts.json │ ├── zh-CN.lproj │ │ └── InfoPlist.strings │ └── zh-TW.lproj │ │ └── InfoPlist.strings ├── Deferred │ ├── Deferred.h │ ├── Deferred.swift │ ├── LockProtected.swift │ └── ReadWriteLock.swift ├── Focus.entitlements ├── FocusEnterprise.entitlements ├── FocusIntentExtension │ ├── FocusIntentExtension.entitlements │ ├── Info.plist │ └── IntentHandler.swift ├── Klar.entitlements ├── KlarEnterprise.entitlements ├── OpenInFocus │ ├── ActionViewController.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-83.5@2x.png │ │ │ ├── icon-small-50.png │ │ │ ├── icon-small-50@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ ├── ios-marketing.png │ │ │ ├── notification-icon@2x.png │ │ │ ├── notification-icon@3x.png │ │ │ ├── notification-icon~ipad.png │ │ │ └── notification-icon~ipad@2x.png │ │ └── Contents.json │ └── Info.plist ├── README.md ├── Search │ ├── README.md │ ├── SearchEngines.plist │ ├── SearchOverlays │ │ ├── baidu.xml │ │ ├── bing.xml │ │ ├── duckduckgo.xml │ │ ├── qwant.xml │ │ └── yahoo.xml │ ├── SearchPlugins │ │ ├── ar │ │ │ └── wikipedia-ar.xml │ │ ├── as │ │ │ ├── amazon-in.xml │ │ │ └── wikipedia-as.xml │ │ ├── az │ │ │ ├── azerdict.xml │ │ │ └── wikipedia-az.xml │ │ ├── be-BY │ │ │ ├── be.wikipedia.org.xml │ │ │ └── yandex.by.xml │ │ ├── be │ │ │ ├── be.wikipedia.org.xml │ │ │ └── yandex.by.xml │ │ ├── bn-IN │ │ │ └── wikipedia-bn.xml │ │ ├── br │ │ │ └── wikipedia-br.xml │ │ ├── ca │ │ │ └── wikipedia-ca.xml │ │ ├── cs │ │ │ ├── mapy-cz.xml │ │ │ ├── seznam-cz.xml │ │ │ └── wikipedia-cz.xml │ │ ├── cy │ │ │ ├── amazon-en-GB.xml │ │ │ └── wikipedia-cy.xml │ │ ├── da │ │ │ ├── amazon-co-uk.xml │ │ │ └── wikipedia-da.xml │ │ ├── de │ │ │ ├── amazon-de.xml │ │ │ └── wikipedia-de.xml │ │ ├── default │ │ │ ├── amazondotcom.xml │ │ │ ├── duckduckgo.xml │ │ │ ├── google-2018.xml │ │ │ ├── google-com-nocodes.xml │ │ │ ├── google-nocodes.xml │ │ │ ├── google.xml │ │ │ ├── qwant.xml │ │ │ ├── wikipedia-ru.xml │ │ │ └── wikipedia.xml │ │ ├── dsb │ │ │ ├── amazon-de.xml │ │ │ └── wikipedia-dsb.xml │ │ ├── el │ │ │ └── wikipedia-el.xml │ │ ├── en-GB │ │ │ └── amazon-en-GB.xml │ │ ├── eo │ │ │ └── wikipedia-eo.xml │ │ ├── es-AR │ │ │ ├── mercadolibre-ar.xml │ │ │ └── wikipedia-es.xml │ │ ├── es-CL │ │ │ ├── mercadolibre-cl.xml │ │ │ └── wikipedia-es.xml │ │ ├── es-ES │ │ │ └── wikipedia-es.xml │ │ ├── es-MX │ │ │ ├── mercadolibre-mx.xml │ │ │ └── wikipedia-es.xml │ │ ├── et │ │ │ ├── amazon-co-uk.xml │ │ │ └── wikipedia-et.xml │ │ ├── eu │ │ │ └── wikipedia-eu.xml │ │ ├── fa │ │ │ └── wikipedia-fa.xml │ │ ├── ff │ │ │ ├── amazon-france.xml │ │ │ └── wikipedia-fr.xml │ │ ├── fi │ │ │ └── wikipedia-fi.xml │ │ ├── fr │ │ │ └── wikipedia-fr.xml │ │ ├── fy-NL │ │ │ └── wikipedia-fy-NL.xml │ │ ├── ga-IE │ │ │ ├── amazon-en-GB.xml │ │ │ └── wikipedia-ga-IE.xml │ │ ├── gd │ │ │ ├── faclair-beag.xml │ │ │ └── wikipedia-gd.xml │ │ ├── gl │ │ │ └── wikipedia-gl.xml │ │ ├── gu-IN │ │ │ ├── amazon-in.xml │ │ │ └── wikipedia-gu.xml │ │ ├── he │ │ │ └── wikipedia-he.xml │ │ ├── hi-IN │ │ │ ├── amazon-in.xml │ │ │ └── wikipedia-hi.xml │ │ ├── hr │ │ │ ├── amazon-en-GB.xml │ │ │ └── wikipedia-hr.xml │ │ ├── hsb │ │ │ ├── amazon-de.xml │ │ │ └── wikipedia-hsb.xml │ │ ├── hu │ │ │ ├── vatera.xml │ │ │ └── wikipedia-hu.xml │ │ ├── hy-AM │ │ │ └── wikipedia-hy-AM.xml │ │ ├── id │ │ │ └── wikipedia-id.xml │ │ ├── is │ │ │ └── wikipedia-is.xml │ │ ├── it │ │ │ └── wikipedia-it.xml │ │ ├── ja │ │ │ ├── amazon-jp.xml │ │ │ ├── wikipedia-ja.xml │ │ │ └── yahoo-jp.xml │ │ ├── ka │ │ │ └── wikipedia-ka.xml │ │ ├── kk-KZ │ │ │ ├── wikipedia-kk.xml │ │ │ └── yandex.xml │ │ ├── kk │ │ │ ├── wikipedia-kk.xml │ │ │ └── yandex.xml │ │ ├── kn │ │ │ ├── amazon-in.xml │ │ │ ├── wikipedia-kn.xml │ │ │ └── wiktionary-kn.xml │ │ ├── ko │ │ │ ├── daum-kr.xml │ │ │ └── naver-kr.xml │ │ ├── lo │ │ │ └── wikipedia-lo.xml │ │ ├── lt │ │ │ └── wikipedia-lt.xml │ │ ├── lv │ │ │ ├── salidzinilv.xml │ │ │ └── wikipedia-lv.xml │ │ ├── ml │ │ │ └── wikipedia-ml.xml │ │ ├── mr │ │ │ ├── amazon-in.xml │ │ │ └── wikipedia-mr.xml │ │ ├── ms │ │ │ └── wikipedia-ms.xml │ │ ├── my │ │ │ └── wikipedia-my.xml │ │ ├── nb-NO │ │ │ ├── gulesider-mobile-NO.xml │ │ │ └── wikipedia-NO.xml │ │ ├── nl │ │ │ └── wikipedia-nl.xml │ │ ├── nn-NO │ │ │ ├── gulesider-mobile-NO.xml │ │ │ └── wikipedia-NN.xml │ │ ├── or │ │ │ ├── amazon-in.xml │ │ │ ├── wikipedia-or.xml │ │ │ └── wiktionary-or.xml │ │ ├── pl │ │ │ └── wikipedia-pl.xml │ │ ├── pt-BR │ │ │ └── wikipedia-br.xml │ │ ├── pt-PT │ │ │ └── wikipedia-ptpt.xml │ │ ├── rm │ │ │ ├── leo_ende_de.xml │ │ │ └── wikipedia-rm.xml │ │ ├── ro │ │ │ └── wikipedia-ro.xml │ │ ├── ru-BY │ │ │ ├── wikipedia-ru.xml │ │ │ └── yandex-ru.xml │ │ ├── ru-KZ │ │ │ ├── wikipedia-ru.xml │ │ │ └── yandex-ru.xml │ │ ├── ru-RU │ │ │ ├── wikipedia-ru.xml │ │ │ └── yandex-ru.xml │ │ ├── ru-UA │ │ │ ├── wikipedia-ru.xml │ │ │ └── yandex-ru.xml │ │ ├── ru │ │ │ ├── wikipedia-ru.xml │ │ │ └── yandex-ru.xml │ │ ├── sk │ │ │ └── wikipedia-sk.xml │ │ ├── sl │ │ │ ├── ceneje.xml │ │ │ ├── odpiralni.xml │ │ │ └── wikipedia-sl.xml │ │ ├── sq │ │ │ ├── amazon-en-GB.xml │ │ │ └── wikipedia-sq.xml │ │ ├── sr │ │ │ └── wikipedia-sr.xml │ │ ├── sv-SE │ │ │ ├── prisjakt-sv-SE.xml │ │ │ └── wikipedia-sv-SE.xml │ │ ├── ta │ │ │ ├── amazon-in.xml │ │ │ ├── wikipedia-ta.xml │ │ │ └── wiktionary-ta.xml │ │ ├── te │ │ │ ├── amazon-in.xml │ │ │ ├── wikipedia-te.xml │ │ │ └── wiktionary-te.xml │ │ ├── th │ │ │ └── wikipedia-th.xml │ │ ├── tr-TR │ │ │ ├── wikipedia-tr.xml │ │ │ └── yandex-tr.xml │ │ ├── tr │ │ │ ├── wikipedia-tr.xml │ │ │ └── yandex-tr.xml │ │ ├── uk-UA │ │ │ ├── wikipedia-uk.xml │ │ │ └── yandex-market.xml │ │ ├── uk │ │ │ ├── wikipedia-uk.xml │ │ │ └── yandex-market.xml │ │ ├── ur │ │ │ ├── amazon-in.xml │ │ │ └── wikipedia-ur.xml │ │ ├── uz │ │ │ └── wikipedia-uz.xml │ │ ├── zh-CN │ │ │ ├── baidu.xml │ │ │ └── wikipedia-zh-CN.xml │ │ ├── zh-HK │ │ │ └── wikipedia-zh-TW.xml │ │ └── zh-TW │ │ │ └── wikipedia-zh-TW.xml │ ├── Tests │ │ ├── Base │ │ │ └── testplugin.xml │ │ ├── Expected │ │ │ ├── append.xml │ │ │ └── replace.xml │ │ └── Overlays │ │ │ ├── append.xml │ │ │ └── replace.xml │ ├── get_supported_locales.swift │ ├── list.json │ ├── run_tests.py │ └── scrape_plugins.py ├── Shared │ ├── AppConfig.swift │ ├── AppInfo.swift │ ├── Settings.swift │ └── Utils.swift ├── Widgets │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── GradientFirst.colorset │ │ │ └── Contents.json │ │ ├── GradientSecond.colorset │ │ │ └── Contents.json │ │ ├── WidgetBackground.colorset │ │ │ └── Contents.json │ │ └── icon_logo.imageset │ │ │ ├── Contents.json │ │ │ └── icon_logo.pdf │ ├── Info.plist │ ├── SearchWidgetView.swift │ ├── Widgets.swift │ ├── am.lproj │ │ └── Localizable.strings │ ├── ar.lproj │ │ └── Localizable.strings │ ├── be.lproj │ │ └── Localizable.strings │ ├── bg.lproj │ │ └── Localizable.strings │ ├── br.lproj │ │ └── Localizable.strings │ ├── bs.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── co.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── cy.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── dsb.lproj │ │ └── Localizable.strings │ ├── el.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── en-CA.lproj │ │ └── Localizable.strings │ ├── en-GB.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── en-US.lproj │ │ └── Localizable.strings │ ├── eo.lproj │ │ └── Localizable.strings │ ├── es-AR.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── es-CL.lproj │ │ └── Localizable.strings │ ├── es-ES.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── es-MX.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── eu.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── gd.lproj │ │ └── Localizable.strings │ ├── gl.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── hsb.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── hy-AM.lproj │ │ └── Localizable.strings │ ├── ia.lproj │ │ └── Localizable.strings │ ├── id.lproj │ │ └── Localizable.strings │ ├── is.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── it.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ka.lproj │ │ └── Localizable.strings │ ├── kab.lproj │ │ └── Localizable.strings │ ├── kk.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── ko.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── lo.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── nb.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── ne-NP.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── nn.lproj │ │ └── Localizable.strings │ ├── pa-IN.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt-BR.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── pt-PT.lproj │ │ └── Localizable.strings │ ├── ro.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── scn.lproj │ │ └── Localizable.strings │ ├── si.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── sl.lproj │ │ └── Localizable.strings │ ├── sq.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── tg.lproj │ │ └── Localizable.strings │ ├── th.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── tt.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── vi.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── zh-CN.lproj │ │ └── Localizable.strings │ └── zh-TW.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings ├── bin │ ├── nimbus-fml-configuration.sh │ └── sdk_generator.sh ├── focus-ios-tests │ ├── ClientTests │ │ ├── BrowserViewControllerTests.swift │ │ ├── DomainCompletionTests.swift │ │ ├── Info.plist │ │ ├── NavigationPathTests.swift │ │ ├── RequestHandlerTests.swift │ │ ├── SearchEngineManagerTests.swift │ │ ├── SearchEngineTests.swift │ │ ├── SupportUtilsTest.swift │ │ ├── TrackingAdsTests.swift │ │ ├── URIFixupTests.swift │ │ └── URLExtensionsTests.swift │ ├── Documentation │ │ ├── Telemetry.md │ │ ├── UI and Code Map.md │ │ ├── UI and Code Map.pdf │ │ ├── UI and Code Map.sketch │ │ ├── images │ │ │ ├── 00-firstrunVC.png │ │ │ ├── 01-browserVC-OverlayView.png │ │ │ ├── 02-browserVC-showing-webpage.png │ │ │ ├── 03-settingsVC.png │ │ │ ├── 04-searchsettingsVC.png │ │ │ └── 05-aboutVC.png │ │ └── metrics.md │ ├── FullFunctionalTests.xctestplan │ ├── ScreenshotTests │ │ ├── BaseTestCaseL10n.swift │ │ ├── Info.plist │ │ ├── MarketingTests.swift │ │ ├── SnapshotHelper.swift │ │ ├── SnapshotTests.swift │ │ ├── af.lproj │ │ │ └── InfoPlist.strings │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── az.lproj │ │ │ └── InfoPlist.strings │ │ ├── bn.lproj │ │ │ └── InfoPlist.strings │ │ ├── br.lproj │ │ │ └── InfoPlist.strings │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── co.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── cy.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── dsb.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en-GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── eo.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-AR.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-CL.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-ES.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-MX.lproj │ │ │ └── InfoPlist.strings │ │ ├── eu.lproj │ │ │ └── InfoPlist.strings │ │ ├── fa.lproj │ │ │ └── InfoPlist.strings │ │ ├── fil.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── ga.lproj │ │ │ └── InfoPlist.strings │ │ ├── gd.lproj │ │ │ └── InfoPlist.strings │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hi-IN.lproj │ │ │ └── InfoPlist.strings │ │ ├── hsb.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── is.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── kab.lproj │ │ │ └── InfoPlist.strings │ │ ├── kk.lproj │ │ │ └── InfoPlist.strings │ │ ├── kn.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── lo.lproj │ │ │ └── InfoPlist.strings │ │ ├── lt.lproj │ │ │ └── InfoPlist.strings │ │ ├── lv.lproj │ │ │ └── InfoPlist.strings │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── my.lproj │ │ │ └── InfoPlist.strings │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── nn.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt-BR.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt-PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── ses.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── sl.lproj │ │ │ └── InfoPlist.strings │ │ ├── sq.lproj │ │ │ └── InfoPlist.strings │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── ta.lproj │ │ │ └── InfoPlist.strings │ │ ├── te.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── ur.lproj │ │ │ └── InfoPlist.strings │ │ ├── uz.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh-CN.lproj │ │ │ └── InfoPlist.strings │ │ └── zh-TW.lproj │ │ │ └── InfoPlist.strings │ ├── SmokeTest.xctestplan │ ├── UnitTests.xctestplan │ ├── XCUITest │ │ ├── AsianLocaleTest.swift │ │ ├── BaseTestCase.swift │ │ ├── BrowsingTest.swift │ │ ├── CopyPasteTest.swift │ │ ├── DragAndDropTest.swift │ │ ├── Info.plist │ │ ├── OnboardingTest.swift │ │ ├── PageActionMenuTest.swift │ │ ├── PageShortcutsTest.swift │ │ ├── SearchProviderTest.swift │ │ ├── SearchSuggestionsTest.swift │ │ ├── SettingTest.swift │ │ ├── TestHelpers.swift │ │ ├── TrackingProtectionTest.swift │ │ ├── URLValidationTest.swift │ │ ├── XCUIApplication+Buttons.swift │ │ ├── XCUITests-Bridging-Header.h │ │ ├── af.lproj │ │ │ └── InfoPlist.strings │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── az.lproj │ │ │ └── InfoPlist.strings │ │ ├── bn.lproj │ │ │ └── InfoPlist.strings │ │ ├── br.lproj │ │ │ └── InfoPlist.strings │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── co.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── cy.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── dsb.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en-GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── eo.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-AR.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-CL.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-ES.lproj │ │ │ └── InfoPlist.strings │ │ ├── es-MX.lproj │ │ │ └── InfoPlist.strings │ │ ├── eu.lproj │ │ │ └── InfoPlist.strings │ │ ├── fa.lproj │ │ │ └── InfoPlist.strings │ │ ├── fil.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── ga.lproj │ │ │ └── InfoPlist.strings │ │ ├── gd.lproj │ │ │ └── InfoPlist.strings │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hi-IN.lproj │ │ │ └── InfoPlist.strings │ │ ├── hsb.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── is.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── kab.lproj │ │ │ └── InfoPlist.strings │ │ ├── kk.lproj │ │ │ └── InfoPlist.strings │ │ ├── kn.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── lo.lproj │ │ │ └── InfoPlist.strings │ │ ├── lt.lproj │ │ │ └── InfoPlist.strings │ │ ├── lv.lproj │ │ │ └── InfoPlist.strings │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── my.lproj │ │ │ └── InfoPlist.strings │ │ ├── nb.lproj │ │ │ └── InfoPlist.strings │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── nn.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt-BR.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt-PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── ses.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── sl.lproj │ │ │ └── InfoPlist.strings │ │ ├── sq.lproj │ │ │ └── InfoPlist.strings │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── ta.lproj │ │ │ └── InfoPlist.strings │ │ ├── te.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── ur.lproj │ │ │ └── InfoPlist.strings │ │ ├── uz.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh-CN.lproj │ │ │ └── InfoPlist.strings │ │ └── zh-TW.lproj │ │ │ └── InfoPlist.strings │ ├── ci_scripts │ │ └── ci_post_clone.sh │ ├── marketing.sh │ └── tools │ │ ├── export-strings.sh │ │ ├── import-strings.sh │ │ ├── sentry-cli │ │ └── set-version.sh ├── l10n-screenshots.sh ├── nimbus.fml.yaml └── version.xcconfig ├── iOSNimbusFeatureUtility.sh ├── latest_acorn_release.json ├── license_plist.yml ├── monorepo-migration ├── data │ ├── message-expressions.txt │ └── repo-numbers.json ├── filter-repo.py ├── generate-replace-message-expressions.py ├── generate-repo-numbers.py └── sync-focus.sh ├── package.json ├── rust_components_local.sh ├── scripts ├── nightly_testflight_add_group.py └── update_from_application_services.py ├── setup_build_tools.sh ├── sync_acorn_icons.py ├── taskcluster ├── config.yml ├── docker │ ├── alpine │ │ └── Dockerfile │ └── screenshots │ │ ├── Dockerfile │ │ └── requirements.txt ├── ffios_taskgraph │ ├── __init__.py │ ├── build_types.py │ ├── job.py │ ├── loader │ │ ├── __init__.py │ │ └── screenshots_locales.py │ ├── parameters.py │ ├── release_promotion.py │ ├── routes.py │ ├── screenshots_locales.py │ ├── target_tasks.py │ ├── transforms │ │ ├── __init__.py │ │ ├── bitrise.py │ │ ├── generate_screenshots.py │ │ ├── github_release.py │ │ ├── mark_as_shipped.py │ │ ├── release_notifications.py │ │ ├── relpro_promote.py │ │ ├── relpro_push.py │ │ └── version_bump.py │ ├── util │ │ ├── __init__.py │ │ └── chunkify.py │ └── worker_types.py ├── kinds │ ├── bitrise-performance │ │ └── kind.yml │ ├── build │ │ └── kind.yml │ ├── docker-image │ │ └── kind.yml │ ├── firebase-performance │ │ └── kind.yml │ ├── generate-screenshots │ │ └── kind.yml │ ├── github-release │ │ └── kind.yml │ ├── mark-as-shipped │ │ └── kind.yml │ ├── promote │ │ └── kind.yml │ ├── push │ │ └── kind.yml │ ├── release-notify-push │ │ └── kind.yml │ ├── release-notify-ship │ │ └── kind.yml │ ├── test │ │ └── kind.yml │ └── version-bump │ │ └── kind.yml ├── requirements.in ├── requirements.txt ├── scripts │ ├── check-screenshots.py │ └── get-secret.py └── test │ └── params │ ├── cron-bitrise-performance.yml │ ├── cron-firebase-performance.yml │ ├── main-push.yml │ ├── pull-request.yml │ ├── release-promote-beta.yml │ ├── release-promote-focus.yml │ ├── release-promote.yml │ ├── release-push-beta.yml │ ├── release-push-focus.yml │ ├── release-push.yml │ ├── release-ship-beta.yml │ ├── release-ship-focus.yml │ └── release-ship.yml ├── test-fixtures ├── browserActivityStreamPages-places.db ├── browserAutocomplete-places.db ├── browserYoutubeTwitterMozillaExample-places.db ├── ci │ ├── convert_junit_to_markdown.py │ ├── get-next-pr-version │ ├── slack-notification-payload-autofill-test.json │ ├── slack-notification-payload-autofill.json │ ├── slack-notification-payload-remote-settings-fetch.json │ ├── slack-notification-payload-update-bitrise-steps.json │ └── uri_update.py ├── empty-login-form-submit.html ├── empty-login-form.html ├── exampleURLHistoryBookmark-places.db ├── generate-metrics.sh ├── generate-test-db.py ├── perfTestTransform.py ├── read-rust-component-tag.sh ├── requirements.txt ├── tabs-archive-maker.sh ├── tabsState1280.archive ├── tabsState20.archive ├── test-cookie-store.html ├── test-example.html ├── test-indexeddb-private.html ├── test-mozilla-book.html ├── test-mozilla-org.html ├── test-password-2.html ├── test-password-submit-2.html ├── test-password-submit.html ├── test-password.html ├── test-popup-blocker.html ├── test-translation.html ├── test-user-agent.html ├── test-window-opener.html ├── testBookmarksDatabase1-places.db ├── testBookmarksDatabase100-places.db ├── testBookmarksDatabase1000-places.db ├── testDatabaseFixture-places.db ├── testHistoryDatabase1-places.db ├── testHistoryDatabase100-places.db ├── update-rust-component-version.py ├── update.py ├── update_bitrise_steps.py └── websites.csv ├── update_licenses.sh ├── update_readme_project_stack.sh ├── update_version.sh ├── version.txt └── webpack.config.js /.cron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.cron.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.githooks/pre-push -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/ISSUE_TEMPLATE/---bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---crash-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/ISSUE_TEMPLATE/---crash-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/ISSUE_TEMPLATE/---feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/ISSUE_TEMPLATE/new-issue.md -------------------------------------------------------------------------------- /.github/l10n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/l10n/README.md -------------------------------------------------------------------------------- /.github/l10n/linter_config_focus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/l10n/linter_config_focus.json -------------------------------------------------------------------------------- /.github/l10n/linter_config_ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/l10n/linter_config_ios.json -------------------------------------------------------------------------------- /.github/workflows/firefox-ios-stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/firefox-ios-stale.yml -------------------------------------------------------------------------------- /.github/workflows/firefox-ios-ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/firefox-ios-ui-tests.yml -------------------------------------------------------------------------------- /.github/workflows/firefox-ios-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/firefox-ios-update.yml -------------------------------------------------------------------------------- /.github/workflows/focus-ios-l10n-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/focus-ios-l10n-linter.yml -------------------------------------------------------------------------------- /.github/workflows/focus-ios-ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/focus-ios-ui-tests.yml -------------------------------------------------------------------------------- /.github/workflows/glean-probe-scraper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/glean-probe-scraper.yml -------------------------------------------------------------------------------- /.github/workflows/pr-version-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/pr-version-comment.yml -------------------------------------------------------------------------------- /.github/workflows/update-bitrise-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.github/workflows/update-bitrise-steps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.periphery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.periphery.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.taskcluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/.taskcluster.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/AUTHORS -------------------------------------------------------------------------------- /BrowserKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/.gitignore -------------------------------------------------------------------------------- /BrowserKit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Package.resolved -------------------------------------------------------------------------------- /BrowserKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Package.swift -------------------------------------------------------------------------------- /BrowserKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/README.md -------------------------------------------------------------------------------- /BrowserKit/Sources/Common/Logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Common/Logger/README.md -------------------------------------------------------------------------------- /BrowserKit/Sources/Common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Common/README.md -------------------------------------------------------------------------------- /BrowserKit/Sources/JWTKit/JWTEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/JWTKit/JWTEncoder.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/JWTKit/JWTError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/JWTKit/JWTError.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/JWTKit/JWTHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/JWTKit/JWTHeader.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/MenuKit/MenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/MenuKit/MenuCell.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Redux/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Redux/Action.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Redux/Middleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Redux/Middleware.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Redux/Reducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Redux/Reducer.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Redux/State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Redux/State.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Redux/Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Redux/Store.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Redux/Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Redux/Subscription.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/AppInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/AppInfo.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/AppName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/AppName.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/Bytes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/Bytes.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/Cancellable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/Cancellable.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/DeviceInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/DeviceInfo.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/Functions.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/InternalURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/InternalURL.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/Loader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/Loader.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/Prefs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/Prefs.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/URLCaching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/URLCaching.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/UserAgent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/UserAgent.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/Shared/WeakList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/Shared/WeakList.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/SiteImageView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/SiteImageView/README.md -------------------------------------------------------------------------------- /BrowserKit/Sources/TabDataStore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/TabDataStore/README.md -------------------------------------------------------------------------------- /BrowserKit/Sources/WebEngine/Engine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/WebEngine/Engine.swift -------------------------------------------------------------------------------- /BrowserKit/Sources/WebEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Sources/WebEngine/README.md -------------------------------------------------------------------------------- /BrowserKit/Tests/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Tests/.swiftlint.yml -------------------------------------------------------------------------------- /BrowserKit/Tests/MenuKitTests/.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/BrowserKit/Tests/MenuKitTests/.swift -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/Dangerfile.swift -------------------------------------------------------------------------------- /FirefoxTelemetryUtility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/FirefoxTelemetryUtility.sh -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/Gemfile -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /MozillaRustComponents/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/MozillaRustComponents/Package.resolved -------------------------------------------------------------------------------- /MozillaRustComponents/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/MozillaRustComponents/Package.swift -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/README.md -------------------------------------------------------------------------------- /SampleBrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/SampleBrowser/README.md -------------------------------------------------------------------------------- /SampleBrowser/SampleBrowser/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/SampleBrowser/SampleBrowser/Info.plist -------------------------------------------------------------------------------- /SampleBrowser/SampleBrowser/testPopUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/SampleBrowser/SampleBrowser/testPopUp.html -------------------------------------------------------------------------------- /Sources/DangerDependencies/Fake.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/Sources/DangerDependencies/Fake.swift -------------------------------------------------------------------------------- /TestFlight/WhatToTest.en-US.txt: -------------------------------------------------------------------------------- 1 | Bug Fixes 2 | -------------------------------------------------------------------------------- /adr/0001-modernize-logging-solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/adr/0001-modernize-logging-solution.md -------------------------------------------------------------------------------- /adr/0002-coordinators-for-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/adr/0002-coordinators-for-navigation.md -------------------------------------------------------------------------------- /adr/0003-redux-pilot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/adr/0003-redux-pilot.md -------------------------------------------------------------------------------- /adr/0004-using-redux-to-replace-mvvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/adr/0004-using-redux-to-replace-mvvm.md -------------------------------------------------------------------------------- /adr/0005-redux-and-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/adr/0005-redux-and-navigation.md -------------------------------------------------------------------------------- /adr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/adr/README.md -------------------------------------------------------------------------------- /adr/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/adr/template.md -------------------------------------------------------------------------------- /adr/update-readme.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | adr-log -i README.md -e template.md -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/bitrise.yml -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /firefox-ios/Account/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Account/Info.plist -------------------------------------------------------------------------------- /firefox-ios/Client/AccountSyncHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/AccountSyncHandler.swift -------------------------------------------------------------------------------- /firefox-ios/Client/AdjustHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/AdjustHelper.swift -------------------------------------------------------------------------------- /firefox-ios/Client/Application/Crasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Application/Crasher.h -------------------------------------------------------------------------------- /firefox-ios/Client/Application/Crasher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Application/Crasher.m -------------------------------------------------------------------------------- /firefox-ios/Client/Application/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Application/main.swift -------------------------------------------------------------------------------- /firefox-ios/Client/ApplicationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/ApplicationHelper.swift -------------------------------------------------------------------------------- /firefox-ios/Client/Assets/CertError.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Assets/CertError.css -------------------------------------------------------------------------------- /firefox-ios/Client/Assets/CertError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Assets/CertError.html -------------------------------------------------------------------------------- /firefox-ios/Client/Assets/FxASignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Assets/FxASignIn.js -------------------------------------------------------------------------------- /firefox-ios/Client/Assets/NetError.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Assets/NetError.css -------------------------------------------------------------------------------- /firefox-ios/Client/Assets/NetError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Assets/NetError.html -------------------------------------------------------------------------------- /firefox-ios/Client/Assets/easterEggGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Assets/easterEggGif.gif -------------------------------------------------------------------------------- /firefox-ios/Client/Assets/topdomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Assets/topdomains.txt -------------------------------------------------------------------------------- /firefox-ios/Client/Client-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Client-Bridging-Header.h -------------------------------------------------------------------------------- /firefox-ios/Client/Configuration/version.xcconfig: -------------------------------------------------------------------------------- 1 | APP_VERSION = 147.0 2 | -------------------------------------------------------------------------------- /firefox-ios/Client/CrashTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/CrashTracker.swift -------------------------------------------------------------------------------- /firefox-ios/Client/FennecTesting.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/FennecTesting.xcconfig -------------------------------------------------------------------------------- /firefox-ios/Client/Frontend/HelpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Frontend/HelpView.swift -------------------------------------------------------------------------------- /firefox-ios/Client/Glean/glean_index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Glean/glean_index.yaml -------------------------------------------------------------------------------- /firefox-ios/Client/Glean/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Glean/pings.yaml -------------------------------------------------------------------------------- /firefox-ios/Client/Glean/probes/search.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Glean/probes/search.yaml -------------------------------------------------------------------------------- /firefox-ios/Client/Glean/probes/toast.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Glean/probes/toast.yaml -------------------------------------------------------------------------------- /firefox-ios/Client/Glean/probes/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Glean/probes/user.yaml -------------------------------------------------------------------------------- /firefox-ios/Client/Glean/tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Glean/tags.yaml -------------------------------------------------------------------------------- /firefox-ios/Client/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Info.plist -------------------------------------------------------------------------------- /firefox-ios/Client/IntroScreenManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/IntroScreenManager.swift -------------------------------------------------------------------------------- /firefox-ios/Client/MailSchemes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/MailSchemes.plist -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/defaultEnabledOff.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/defaultEnabledOn.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": true 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/feltPrivacySimplifiedUIOff.json: -------------------------------------------------------------------------------- 1 | { 2 | "simplified-ui-enabled": false 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/feltPrivacySimplifiedUIOn.json: -------------------------------------------------------------------------------- 1 | { 2 | "simplified-ui-enabled": true 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/homepageSearchBarOff.json: -------------------------------------------------------------------------------- 1 | { 2 | "search-bar": false 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/homepageSearchBarOn.json: -------------------------------------------------------------------------------- 1 | { 2 | "search-bar": true 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/storiesRedesignOff.json: -------------------------------------------------------------------------------- 1 | { 2 | "stories-redesign": false 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/storiesRedesignOn.json: -------------------------------------------------------------------------------- 1 | { 2 | "stories-redesign": true 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/swipingTabsOff.json: -------------------------------------------------------------------------------- 1 | { 2 | "swiping_tabs": false 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/Nimbus/TestData/swipingTabsOn.json: -------------------------------------------------------------------------------- 1 | { 2 | "swiping_tabs": true 3 | } 4 | -------------------------------------------------------------------------------- /firefox-ios/Client/ProfilePrefsReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/ProfilePrefsReader.swift -------------------------------------------------------------------------------- /firefox-ios/Client/TabManagement/Tab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/TabManagement/Tab.swift -------------------------------------------------------------------------------- /firefox-ios/Client/Utils/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Utils/Layout.swift -------------------------------------------------------------------------------- /firefox-ios/Client/Utils/Swizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Utils/Swizzling.h -------------------------------------------------------------------------------- /firefox-ios/Client/Utils/Swizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Utils/Swizzling.m -------------------------------------------------------------------------------- /firefox-ios/Client/Utils/Try.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Utils/Try.h -------------------------------------------------------------------------------- /firefox-ios/Client/Utils/Try.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Client/Utils/Try.m -------------------------------------------------------------------------------- /firefox-ios/CredentialProvider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/CredentialProvider/Info.plist -------------------------------------------------------------------------------- /firefox-ios/Extensions/ActionExtension/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "CFBundleDisplayName" = "Open in Firefox"; 2 | -------------------------------------------------------------------------------- /firefox-ios/Extensions/ShareTo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Extensions/ShareTo/Info.plist -------------------------------------------------------------------------------- /firefox-ios/FxA/FxA/NSData+SHA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/FxA/FxA/NSData+SHA.h -------------------------------------------------------------------------------- /firefox-ios/FxA/FxA/NSData+SHA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/FxA/FxA/NSData+SHA.m -------------------------------------------------------------------------------- /firefox-ios/FxA/FxA/PrivateKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/FxA/FxA/PrivateKey.h -------------------------------------------------------------------------------- /firefox-ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /firefox-ios/Providers/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Providers/Profile.swift -------------------------------------------------------------------------------- /firefox-ios/Providers/RustErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Providers/RustErrors.swift -------------------------------------------------------------------------------- /firefox-ios/Providers/RustSyncManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Providers/RustSyncManager.swift -------------------------------------------------------------------------------- /firefox-ios/Push/Autopush.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Push/Autopush.swift -------------------------------------------------------------------------------- /firefox-ios/Push/PushConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Push/PushConfiguration.swift -------------------------------------------------------------------------------- /firefox-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/README.md -------------------------------------------------------------------------------- /firefox-ios/RustFxA/Avatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/RustFxA/Avatar.swift -------------------------------------------------------------------------------- /firefox-ios/RustFxA/FxAEntryPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/RustFxA/FxAEntryPoint.swift -------------------------------------------------------------------------------- /firefox-ios/RustFxA/FxALaunchParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/RustFxA/FxALaunchParams.swift -------------------------------------------------------------------------------- /firefox-ios/RustFxA/FxAWebViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/RustFxA/FxAWebViewModel.swift -------------------------------------------------------------------------------- /firefox-ios/Shared/FSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/FSUtils.h -------------------------------------------------------------------------------- /firefox-ios/Shared/FSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/FSUtils.m -------------------------------------------------------------------------------- /firefox-ios/Shared/KeychainCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/KeychainCache.swift -------------------------------------------------------------------------------- /firefox-ios/Shared/Shared-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/Shared-Bridging-Header.h -------------------------------------------------------------------------------- /firefox-ios/Shared/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/Strings.swift -------------------------------------------------------------------------------- /firefox-ios/Shared/Supporting Files/ur.lproj/Edit Card.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firefox-ios/Shared/Supporting Files/ur.lproj/FirefoxSync.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firefox-ios/Shared/ab.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ab.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ab.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ab.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ab.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ab.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ab.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ab.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ab.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ab.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ab.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ab.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/af.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | /* See http://mzl.la/1T8gxwo */ 2 | "Start Browsing" = "Begin te blaai"; 3 | 4 | -------------------------------------------------------------------------------- /firefox-ios/Shared/af.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/af.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/af.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/af.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/af.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/af.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/af.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/af.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/an.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/an.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/an.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/an.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/an.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/an.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/an.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/an.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/an.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/an.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/an.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/an.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/anp.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/anp.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/anp.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/anp.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/anp.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/anp.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ar.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ar.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ar.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ar.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ar.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ar.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ar.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ar.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ar.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ar.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ar.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ar.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ast.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ast.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ast.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ast.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ast.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ast.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ast.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ast.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ast.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ast.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/az.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/az.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/az.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/az.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/az.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/az.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/az.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/az.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/az.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/az.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/az.lproj/Today.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firefox-ios/Shared/be.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/be.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/be.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/be.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/be.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/be.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/be.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/be.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/be.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/be.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/be.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/be.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bg.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bg.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bg.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bg.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bg.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bg.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bg.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bg.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bg.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bg.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bg.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bg.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bn.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bn.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bn.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bn.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bn.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bn.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bn.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bn.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bn.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bn.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bn.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bn.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bo.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bo.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/br.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/br.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/br.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/br.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/br.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/br.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/br.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/br.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/br.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/br.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/br.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/br.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bs.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bs.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bs.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bs.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bs.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bs.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bs.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bs.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bs.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bs.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/bs.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/bs.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ca.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ca.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ca.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ca.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ca.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ca.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ca.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ca.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ca.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ca.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ca.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ca.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/co.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/co.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/co.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/co.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/co.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/co.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/co.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/co.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/co.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/co.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/co.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/co.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cs.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cs.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cs.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cs.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cs.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cs.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cs.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cs.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cs.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cs.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cs.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cs.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cy.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cy.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cy.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cy.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cy.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cy.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cy.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cy.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cy.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cy.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/cy.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/cy.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/da.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/da.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/da.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/da.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/da.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/da.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/da.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/da.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/da.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/da.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/da.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/da.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/de.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/de.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/de.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/de.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/de.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/de.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/de.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/de.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/de.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/de.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/de.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/de.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/dsb.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/dsb.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/dsb.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/dsb.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/dsb.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/dsb.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/dsb.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/dsb.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/dsb.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/dsb.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/effective_tld_names.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/effective_tld_names.dat -------------------------------------------------------------------------------- /firefox-ios/Shared/el.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/el.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/el.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/el.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/el.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/el.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/el.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/el.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/el.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/el.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/el.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/el.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en-CA.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en-CA.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en-GB.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en-GB.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en-US.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en-US.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/en.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/en.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eo.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eo.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eo.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eo.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eo.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eo.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eo.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eo.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eo.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eo.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eo.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eo.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es-AR.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es-AR.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es-CL.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es-CL.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es-ES.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es-ES.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es-MX.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es-MX.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/es.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/es.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/et.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/et.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/et.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/et.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/et.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/et.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/et.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/et.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/et.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/et.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/et.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/et.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eu.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eu.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eu.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eu.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eu.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eu.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eu.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eu.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eu.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eu.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/eu.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/eu.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fa.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fa.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fa.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fa.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fa.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fa.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fa.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fa.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fa.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fa.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fa.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fa.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fi.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fi.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fi.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fi.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fi.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fi.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fi.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fi.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fi.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fi.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fi.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fi.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fil.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fil.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fil.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fil.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fil.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fil.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fil.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fil.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fil.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fil.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fr.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fr.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fr.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fr.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fr.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fr.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fr.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fr.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fr.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fr.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/fr.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/fr.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ga.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | /* See http://mzl.la/1T8gxwo */ 2 | "Start Browsing" = "Tosaigh ag Brabhsáil"; 3 | 4 | -------------------------------------------------------------------------------- /firefox-ios/Shared/ga.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ga.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ga.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ga.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ga.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ga.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ga.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ga.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gd.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gd.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gd.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gd.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gd.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gd.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gd.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gd.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gd.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gd.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gd.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gd.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gl.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gl.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gl.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gl.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gl.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gl.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gl.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gl.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gl.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gl.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gl.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gl.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/gu-IN.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/gu-IN.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/he.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/he.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/he.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/he.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/he.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/he.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/he.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/he.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/he.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/he.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/he.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/he.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hi-IN.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hi-IN.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hr.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hr.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hr.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hr.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hr.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hr.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hr.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hr.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hr.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hr.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hr.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hr.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hsb.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hsb.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hsb.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hsb.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hsb.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hsb.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hsb.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hsb.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hsb.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hsb.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hu.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hu.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hu.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hu.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hu.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hu.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hu.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hu.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hu.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hu.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hu.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hu.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/hy-AM.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/hy-AM.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ia.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ia.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ia.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ia.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ia.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ia.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ia.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ia.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ia.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ia.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ia.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ia.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/id.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/id.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/id.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/id.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/id.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/id.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/id.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/id.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/id.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/id.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/id.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/id.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/is.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/is.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/is.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/is.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/is.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/is.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/is.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/is.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/is.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/is.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/is.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/is.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/it.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/it.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/it.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/it.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/it.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/it.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/it.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/it.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/it.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/it.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/it.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/it.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ja.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ja.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ja.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ja.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ja.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ja.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ja.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ja.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ja.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ja.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ja.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ja.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/jv.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/jv.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/jv.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/jv.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/jv.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/jv.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ka.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ka.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ka.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ka.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ka.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ka.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ka.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ka.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ka.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ka.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ka.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ka.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kab.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kab.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kab.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kab.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kab.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kab.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kab.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kab.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kab.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kab.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kk.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kk.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kk.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kk.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kk.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kk.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kk.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kk.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kk.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kk.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kk.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kk.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/km.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/km.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/km.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/km.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/km.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/km.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/km.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/km.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/km.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/km.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kn.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kn.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kn.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kn.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kn.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kn.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kn.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kn.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kn.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kn.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/kn.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/kn.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ko.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ko.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ko.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ko.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ko.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ko.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ko.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ko.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ko.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ko.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ko.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ko.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lo.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lo.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lo.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lo.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lo.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lo.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lo.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lo.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lo.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lo.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lo.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lo.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lt.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lt.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lt.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lt.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lt.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lt.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lt.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lt.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lt.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lt.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lt.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lt.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lv.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | /* See http://mzl.la/1T8gxwo */ 2 | "Start Browsing" = "Sākt pārlūkošanu"; 3 | 4 | -------------------------------------------------------------------------------- /firefox-ios/Shared/lv.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lv.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lv.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lv.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lv.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lv.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/lv.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/lv.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ml.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ml.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ml.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ml.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ml.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ml.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ml.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ml.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ml.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ml.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ml.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ml.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/mr.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/mr.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/mr.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/mr.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/mr.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/mr.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/mr.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/mr.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/mr.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/mr.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ms.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | /* See http://mzl.la/1T8gxwo */ 2 | "Start Browsing" = "Mulakan Pelayaran"; 3 | 4 | -------------------------------------------------------------------------------- /firefox-ios/Shared/ms.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ms.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ms.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ms.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ms.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ms.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ms.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ms.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/my.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/my.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/my.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/my.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/my.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/my.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/my.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/my.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/my.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/my.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/my.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/my.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nb.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nb.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nb.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nb.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nb.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nb.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nb.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nb.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nb.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nb.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nb.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nb.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ne-NP.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ne-NP.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nl.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nl.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nl.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nl.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nl.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nl.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nl.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nl.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nl.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nl.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nl.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nl.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nn.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nn.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nn.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nn.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nn.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nn.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nn.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nn.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nn.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nn.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/nn.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/nn.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/oc.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/oc.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/oc.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/oc.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/oc.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/oc.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/oc.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/oc.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/oc.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/oc.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/or.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/or.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pa-IN.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pa-IN.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pl.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pl.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pl.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pl.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pl.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pl.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pl.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pl.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pl.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pl.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pl.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pl.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pt-BR.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pt-BR.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/pt-PT.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/pt-PT.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/rm.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/rm.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/rm.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/rm.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/rm.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/rm.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/rm.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/rm.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/rm.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/rm.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/rm.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/rm.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ro.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ro.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ro.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ro.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ro.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ro.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ro.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ro.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ro.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ro.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ro.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ro.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ru.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ru.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ru.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ru.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ru.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ru.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ru.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ru.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ru.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ru.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ru.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ru.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/scn.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/scn.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/scn.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/scn.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/scn.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/scn.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/scn.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/scn.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/scn.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/scn.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ses.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | /* See http://mzl.la/1T8gxwo */ 2 | "Start Browsing" = "Ceeciyan šintin"; 3 | 4 | -------------------------------------------------------------------------------- /firefox-ios/Shared/ses.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ses.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ses.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ses.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ses.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ses.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/si.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/si.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/si.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/si.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/si.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/si.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/si.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/si.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/si.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/si.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/si.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/si.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sk.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sk.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sk.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sk.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sk.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sk.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sk.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sk.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sk.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sk.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sk.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sk.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sl.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sl.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sl.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sl.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sl.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sl.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sl.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sl.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sl.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sl.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sl.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sl.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sq.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sq.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sq.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sq.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sq.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sq.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sq.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sq.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sq.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sq.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sq.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sq.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/su.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/su.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/su.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/su.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/su.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/su.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/su.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/su.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/su.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/su.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/su.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/su.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sv.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sv.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sv.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sv.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sv.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sv.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sv.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sv.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sv.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sv.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/sv.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/sv.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ta.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ta.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ta.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ta.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ta.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ta.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ta.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ta.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ta.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ta.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ta.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ta.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/te.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/te.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/te.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/te.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/te.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/te.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/te.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/te.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/te.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/te.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/te.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/te.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tg.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tg.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tg.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tg.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tg.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tg.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tg.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tg.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tg.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tg.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tg.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tg.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/th.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/th.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/th.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/th.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/th.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/th.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/th.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/th.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/th.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/th.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/th.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/th.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tr.lproj/Intro.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tr.lproj/Intro.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tr.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tr.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tr.lproj/Search.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tr.lproj/Search.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tr.lproj/Shared.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tr.lproj/Shared.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tr.lproj/Storage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tr.lproj/Storage.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tr.lproj/Today.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tr.lproj/Today.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tt.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/tt.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/tzm.lproj/FindInPage.strings: -------------------------------------------------------------------------------- 1 | /* Text selection menu item */ 2 | "Find in Page" = "ⴰⴼ ⴳ ⵜⴰⵙⵏⴰ"; 3 | 4 | -------------------------------------------------------------------------------- /firefox-ios/Shared/ug.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ug.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/uk.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/uk.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/ur.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/ur.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/uz.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/uz.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Shared/vi.lproj/Menu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Shared/vi.lproj/Menu.strings -------------------------------------------------------------------------------- /firefox-ios/Storage/CertStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/CertStore.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Clients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Clients.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Cursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Cursor.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/DatabaseError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/DatabaseError.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/DiskImageStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/DiskImageStore.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/ExtensionUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/ExtensionUtils.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/FileAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/FileAccessor.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Info.plist -------------------------------------------------------------------------------- /firefox-ios/Storage/PageMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/PageMetadata.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/PinnedSites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/PinnedSites.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Queue.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/ReadingList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/ReadingList.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/RemoteTabs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/RemoteTabs.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/RustKeychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/RustKeychain.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/SQL/BrowserDB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/SQL/BrowserDB.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/SQL/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/SQL/Schema.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Sharing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Sharing.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Sites/Site.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Sites/Site.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Sites/SiteType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Sites/SiteType.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/Visit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/Visit.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/ZoomLevelStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/ZoomLevelStore.swift -------------------------------------------------------------------------------- /firefox-ios/Storage/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Storage/metrics.yaml -------------------------------------------------------------------------------- /firefox-ios/Sync/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Sync/Info.plist -------------------------------------------------------------------------------- /firefox-ios/Sync/Sync-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Sync/Sync-Bridging-Header.h -------------------------------------------------------------------------------- /firefox-ios/Sync/SyncConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/Sync/SyncConstants.swift -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/Deferred/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/Deferred/LICENSE -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/Result/LICENSE -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/Result/README.md -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/ecec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/ecec/LICENSE -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/ecec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/ecec/README.md -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/ecec/test/e2e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/ecec/test/e2e.c -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/ecec/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/ecec/test/test.c -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/ecec/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/ecec/test/test.h -------------------------------------------------------------------------------- /firefox-ios/ThirdParty/sentry-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/ThirdParty/sentry-cli -------------------------------------------------------------------------------- /firefox-ios/WidgetKit/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/WidgetKit/Helpers.swift -------------------------------------------------------------------------------- /firefox-ios/WidgetKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/WidgetKit/Info.plist -------------------------------------------------------------------------------- /firefox-ios/WidgetKit/QuickLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/WidgetKit/QuickLink.swift -------------------------------------------------------------------------------- /firefox-ios/WidgetKit/WidgetKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/WidgetKit/WidgetKit.swift -------------------------------------------------------------------------------- /firefox-ios/WidgetKit/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "Open Firefox" = "بازکردن فایرفاکس"; 3 | 4 | -------------------------------------------------------------------------------- /firefox-ios/bin/sdk_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/bin/sdk_generator.sh -------------------------------------------------------------------------------- /firefox-ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/fastlane/Fastfile -------------------------------------------------------------------------------- /firefox-ios/firefox-ios-tests/Tests/ExperimentIntegrationTests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firefox-ios/firefox-ios-tests/Tests/SyncIntegrationTests/.gitignore: -------------------------------------------------------------------------------- 1 | results 2 | -------------------------------------------------------------------------------- /firefox-ios/firefox-ios-tests/Tests/SyncIntegrationTests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firefox-ios/import-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/import-strings.sh -------------------------------------------------------------------------------- /firefox-ios/l10n-screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/l10n-screenshots.sh -------------------------------------------------------------------------------- /firefox-ios/l10n_comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/l10n_comments.txt -------------------------------------------------------------------------------- /firefox-ios/nimbus.fml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/nimbus.fml.yaml -------------------------------------------------------------------------------- /firefox-ios/sticker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/firefox-ios/sticker/Info.plist -------------------------------------------------------------------------------- /focus-ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/.gitignore -------------------------------------------------------------------------------- /focus-ios/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/.swiftlint.yml -------------------------------------------------------------------------------- /focus-ios/Blockzilla/Ads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/Ads.js -------------------------------------------------------------------------------- /focus-ios/Blockzilla/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/AppDelegate.swift -------------------------------------------------------------------------------- /focus-ios/Blockzilla/FindInPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/FindInPage.js -------------------------------------------------------------------------------- /focus-ios/Blockzilla/FullScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/FullScreen.js -------------------------------------------------------------------------------- /focus-ios/Blockzilla/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/Info.plist -------------------------------------------------------------------------------- /focus-ios/Blockzilla/MetadataHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/MetadataHelper.js -------------------------------------------------------------------------------- /focus-ios/Blockzilla/Nimbus/initial_experiments.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [] 3 | } 4 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/Theme/Theme.swift -------------------------------------------------------------------------------- /focus-ios/Blockzilla/af.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/et.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | /* (No Comment) */ 2 | "Intents.Erase.Title" = "Kustuta"; 3 | 4 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/fa.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | /* (No Comment) */ 2 | "Intents.Erase.Title" = "پاک کردن"; 3 | 4 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/fil.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | /* (No Comment) */ 2 | "Intents.Erase.Title" = "Burahin"; 3 | 4 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/ga.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/lt.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | /* (No Comment) */ 2 | "Intents.Erase.Title" = "Išvalyti"; 3 | 4 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/metrics.yaml -------------------------------------------------------------------------------- /focus-ios/Blockzilla/metrics_legacy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/metrics_legacy.yaml -------------------------------------------------------------------------------- /focus-ios/Blockzilla/pings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/pings.yaml -------------------------------------------------------------------------------- /focus-ios/Blockzilla/ses.lproj/Intro.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/topdomains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Blockzilla/topdomains.txt -------------------------------------------------------------------------------- /focus-ios/Blockzilla/ur.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | /* (No Comment) */ 2 | "Intents.Erase.Title" = "مٹائيں"; 3 | 4 | -------------------------------------------------------------------------------- /focus-ios/Blockzilla/uz.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | /* (No Comment) */ 2 | "Intents.Erase.Title" = "Oʻchirish"; 3 | 4 | -------------------------------------------------------------------------------- /focus-ios/BlockzillaPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/BlockzillaPackage/.gitignore -------------------------------------------------------------------------------- /focus-ios/BlockzillaPackage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/BlockzillaPackage/README.md -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/ContentBlocker/Info.plist -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/af.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/ast.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/az.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/bn.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/fa.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/fil.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/ga.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/gu-IN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/hi-IN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/kn.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/lt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/lv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/mr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/my.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/ses.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/ta.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/te.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/ur.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/uz.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Strings */ 2 | 3 | -------------------------------------------------------------------------------- /focus-ios/ContentBlocker/web-fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/ContentBlocker/web-fonts.json -------------------------------------------------------------------------------- /focus-ios/Deferred/Deferred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Deferred/Deferred.h -------------------------------------------------------------------------------- /focus-ios/Deferred/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Deferred/Deferred.swift -------------------------------------------------------------------------------- /focus-ios/Deferred/LockProtected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Deferred/LockProtected.swift -------------------------------------------------------------------------------- /focus-ios/Deferred/ReadWriteLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Deferred/ReadWriteLock.swift -------------------------------------------------------------------------------- /focus-ios/Focus.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Focus.entitlements -------------------------------------------------------------------------------- /focus-ios/FocusEnterprise.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/FocusEnterprise.entitlements -------------------------------------------------------------------------------- /focus-ios/Klar.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Klar.entitlements -------------------------------------------------------------------------------- /focus-ios/KlarEnterprise.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/KlarEnterprise.entitlements -------------------------------------------------------------------------------- /focus-ios/OpenInFocus/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/OpenInFocus/Info.plist -------------------------------------------------------------------------------- /focus-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/README.md -------------------------------------------------------------------------------- /focus-ios/Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Search/README.md -------------------------------------------------------------------------------- /focus-ios/Search/SearchEngines.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Search/SearchEngines.plist -------------------------------------------------------------------------------- /focus-ios/Search/SearchOverlays/bing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Search/SearchOverlays/bing.xml -------------------------------------------------------------------------------- /focus-ios/Search/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Search/list.json -------------------------------------------------------------------------------- /focus-ios/Search/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Search/run_tests.py -------------------------------------------------------------------------------- /focus-ios/Search/scrape_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Search/scrape_plugins.py -------------------------------------------------------------------------------- /focus-ios/Shared/AppConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Shared/AppConfig.swift -------------------------------------------------------------------------------- /focus-ios/Shared/AppInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Shared/AppInfo.swift -------------------------------------------------------------------------------- /focus-ios/Shared/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Shared/Settings.swift -------------------------------------------------------------------------------- /focus-ios/Shared/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Shared/Utils.swift -------------------------------------------------------------------------------- /focus-ios/Widgets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Widgets/Info.plist -------------------------------------------------------------------------------- /focus-ios/Widgets/SearchWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Widgets/SearchWidgetView.swift -------------------------------------------------------------------------------- /focus-ios/Widgets/Widgets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/Widgets/Widgets.swift -------------------------------------------------------------------------------- /focus-ios/bin/sdk_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/bin/sdk_generator.sh -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/af.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/br.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/fa.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/ga.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/hi-IN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/kn.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/ses.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/ScreenshotTests/uz.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /focus-ios/focus-ios-tests/marketing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/focus-ios-tests/marketing.sh -------------------------------------------------------------------------------- /focus-ios/l10n-screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/l10n-screenshots.sh -------------------------------------------------------------------------------- /focus-ios/nimbus.fml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/focus-ios/nimbus.fml.yaml -------------------------------------------------------------------------------- /focus-ios/version.xcconfig: -------------------------------------------------------------------------------- 1 | APP_VERSION = 140.0 2 | -------------------------------------------------------------------------------- /iOSNimbusFeatureUtility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/iOSNimbusFeatureUtility.sh -------------------------------------------------------------------------------- /latest_acorn_release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/latest_acorn_release.json -------------------------------------------------------------------------------- /license_plist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/license_plist.yml -------------------------------------------------------------------------------- /monorepo-migration/filter-repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/monorepo-migration/filter-repo.py -------------------------------------------------------------------------------- /monorepo-migration/sync-focus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/monorepo-migration/sync-focus.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/package.json -------------------------------------------------------------------------------- /rust_components_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/rust_components_local.sh -------------------------------------------------------------------------------- /scripts/nightly_testflight_add_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/scripts/nightly_testflight_add_group.py -------------------------------------------------------------------------------- /setup_build_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/setup_build_tools.sh -------------------------------------------------------------------------------- /sync_acorn_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/sync_acorn_icons.py -------------------------------------------------------------------------------- /taskcluster/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/config.yml -------------------------------------------------------------------------------- /taskcluster/docker/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/docker/alpine/Dockerfile -------------------------------------------------------------------------------- /taskcluster/docker/screenshots/requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp-retry 2 | PyYAML 3 | taskcluster 4 | -------------------------------------------------------------------------------- /taskcluster/ffios_taskgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/ffios_taskgraph/__init__.py -------------------------------------------------------------------------------- /taskcluster/ffios_taskgraph/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/ffios_taskgraph/job.py -------------------------------------------------------------------------------- /taskcluster/ffios_taskgraph/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taskcluster/ffios_taskgraph/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/ffios_taskgraph/routes.py -------------------------------------------------------------------------------- /taskcluster/ffios_taskgraph/transforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taskcluster/ffios_taskgraph/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taskcluster/kinds/build/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/kinds/build/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/docker-image/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/kinds/docker-image/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/promote/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/kinds/promote/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/push/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/kinds/push/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/test/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/kinds/test/kind.yml -------------------------------------------------------------------------------- /taskcluster/kinds/version-bump/kind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/kinds/version-bump/kind.yml -------------------------------------------------------------------------------- /taskcluster/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/requirements.in -------------------------------------------------------------------------------- /taskcluster/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/requirements.txt -------------------------------------------------------------------------------- /taskcluster/scripts/check-screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/scripts/check-screenshots.py -------------------------------------------------------------------------------- /taskcluster/scripts/get-secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/scripts/get-secret.py -------------------------------------------------------------------------------- /taskcluster/test/params/main-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/test/params/main-push.yml -------------------------------------------------------------------------------- /taskcluster/test/params/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/test/params/pull-request.yml -------------------------------------------------------------------------------- /taskcluster/test/params/release-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/test/params/release-push.yml -------------------------------------------------------------------------------- /taskcluster/test/params/release-ship.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/taskcluster/test/params/release-ship.yml -------------------------------------------------------------------------------- /test-fixtures/ci/get-next-pr-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/ci/get-next-pr-version -------------------------------------------------------------------------------- /test-fixtures/ci/uri_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/ci/uri_update.py -------------------------------------------------------------------------------- /test-fixtures/empty-login-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/empty-login-form.html -------------------------------------------------------------------------------- /test-fixtures/generate-metrics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/generate-metrics.sh -------------------------------------------------------------------------------- /test-fixtures/generate-test-db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/generate-test-db.py -------------------------------------------------------------------------------- /test-fixtures/perfTestTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/perfTestTransform.py -------------------------------------------------------------------------------- /test-fixtures/read-rust-component-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/read-rust-component-tag.sh -------------------------------------------------------------------------------- /test-fixtures/requirements.txt: -------------------------------------------------------------------------------- 1 | semver 2 | requests 3 | ruamel.yaml 4 | pygithub 5 | pbxproj 6 | inquirer -------------------------------------------------------------------------------- /test-fixtures/tabs-archive-maker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/tabs-archive-maker.sh -------------------------------------------------------------------------------- /test-fixtures/tabsState1280.archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/tabsState1280.archive -------------------------------------------------------------------------------- /test-fixtures/tabsState20.archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/tabsState20.archive -------------------------------------------------------------------------------- /test-fixtures/test-cookie-store.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-cookie-store.html -------------------------------------------------------------------------------- /test-fixtures/test-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-example.html -------------------------------------------------------------------------------- /test-fixtures/test-mozilla-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-mozilla-book.html -------------------------------------------------------------------------------- /test-fixtures/test-mozilla-org.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-mozilla-org.html -------------------------------------------------------------------------------- /test-fixtures/test-password-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-password-2.html -------------------------------------------------------------------------------- /test-fixtures/test-password-submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-password-submit.html -------------------------------------------------------------------------------- /test-fixtures/test-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-password.html -------------------------------------------------------------------------------- /test-fixtures/test-popup-blocker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-popup-blocker.html -------------------------------------------------------------------------------- /test-fixtures/test-translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-translation.html -------------------------------------------------------------------------------- /test-fixtures/test-user-agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-user-agent.html -------------------------------------------------------------------------------- /test-fixtures/test-window-opener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/test-window-opener.html -------------------------------------------------------------------------------- /test-fixtures/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/update.py -------------------------------------------------------------------------------- /test-fixtures/update_bitrise_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/update_bitrise_steps.py -------------------------------------------------------------------------------- /test-fixtures/websites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/test-fixtures/websites.csv -------------------------------------------------------------------------------- /update_licenses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/update_licenses.sh -------------------------------------------------------------------------------- /update_readme_project_stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/update_readme_project_stack.sh -------------------------------------------------------------------------------- /update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/update_version.sh -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 147.0 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/firefox-ios/HEAD/webpack.config.js --------------------------------------------------------------------------------