Created
March 12, 2025 11:30
-
-
Save flodolo/efe476b260e258dfc536f952b28e1214 to your computer and use it in GitHub Desktop.
Firefox iOS unused strings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env bash | |
| # Extract strings | |
| fx_repo="/Users/flodolo/github/firefox-ios" | |
| python ./extract_ids_strings.py "${fx_repo}/firefox-ios/Shared/Strings.swift" | |
| input="./string_ids.txt" | |
| while IFS= read -r id | |
| do | |
| grep -qr "${fx_repo}/firefox-ios" --include=\*.swift --exclude=Strings.swift -e "\.${id}" && : || echo "${id}" | |
| done < "$input" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env python3 | |
| # This Source Code Form is subject to the terms of the Mozilla Public | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| import argparse | |
| import os | |
| import sys | |
| def main(): | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument( | |
| "path", | |
| help="Path to Client/Frontend/Strings.swift", | |
| ) | |
| args = parser.parse_args() | |
| ids = [] | |
| with open(args.path) as f: | |
| lines = f.readlines() | |
| for index, line in enumerate(lines): | |
| line = line.strip() | |
| # Example: public static let ProtectionStatusSecure = MZLocalizedString( | |
| if "= MZLocalizedString(" in line: | |
| id = line[: -len(" = MZLocalizedString(")].split(" ")[-1] | |
| ids.append(id) | |
| ids.sort() | |
| with open("string_ids.txt", "w") as f: | |
| f.write("\n".join(ids)) | |
| if __name__ == "__main__": | |
| main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| A11yLabel | |
| Action | |
| Action | |
| Action | |
| Action | |
| Action | |
| ActionTreatementA | |
| ActualSize | |
| AdCardFooterLabel | |
| AdCardTitleLabel | |
| AddBookmark | |
| AddBookmark | |
| AddBookmarkConfirmMessage | |
| AddButton | |
| AddCardAccessibilityLabel | |
| AddCreditCardTitle | |
| AddPinToShortcutsConfirmMessage | |
| AddReadingList | |
| AddTabAccessibilityLabel | |
| AddToHomeScreen | |
| AddToHomeScreen | |
| AddToHomeScreenSubtitle | |
| AddToHomeScreenSubtitle | |
| AddToReadingListConfirmMessage | |
| AddToShortcuts | |
| AddToShortcuts | |
| AddToShortcuts | |
| AddToShortcutsActionTitle | |
| AddToShortcutsSubtitle | |
| AddToShortcutsSubtitle | |
| AddressBarSettingsTitle | |
| AddressRemoveError | |
| AddressRemovedConfirmation | |
| AddressSaveError | |
| AddressSaveRetrySuggestion | |
| AddressSavedConfirmation | |
| AddressUpdatedConfirmation | |
| AddressUpdatedConfirmationV2 | |
| AdjustedRatingDescription | |
| AdjustedRatingStarsAccessibilityLabel | |
| AdjustedRatingTitle | |
| AdvancedAccountUseStageServer | |
| AfterFourHours | |
| AgreementButtonTitle | |
| AgreementButtonTitleV2 | |
| AllBookmarks | |
| AllowAudioAndVideo | |
| AlternateSearchEnginesTitle | |
| Always | |
| AppIconSelectedLabel | |
| AppIconSelectionHint | |
| AppIconUnselectedLabel | |
| AppMenuBookmarksTitleString | |
| AppMenuCloseAllTabsTitleString | |
| AppMenuCopyLinkTitleString | |
| AppMenuCopyURLConfirmMessage | |
| AppMenuDownloadPDF | |
| AppMenuDownloadPDFConfirmMessage | |
| AppMenuDownloads | |
| AppMenuDownloadsTitleString | |
| AppMenuFindInPageTitleString | |
| AppMenuHistory | |
| AppMenuHistoryTitleString | |
| AppMenuOpenHomePageTitleString | |
| AppMenuPasswords | |
| AppMenuReadingListTitleString | |
| AppMenuReportSiteIssueTitleString | |
| AppMenuSettingsTitleString | |
| AppMenuSharePageTitleString | |
| AppMenuSyncedTabsTitleString | |
| AppMenuTabSentConfirmMessage | |
| AppMenuTurnOffNightMode | |
| AppMenuTurnOnNightMode | |
| AppMenuViewDesktopSiteTitleString | |
| AppMenuViewMobileSiteTitleString | |
| AppSettingsAbout | |
| AppSettingsBlockPopups | |
| AppSettingsClosePrivateTabsDescription | |
| AppSettingsClosePrivateTabsTitle | |
| AppSettingsDone | |
| AppSettingsHelp | |
| AppSettingsLicenses | |
| AppSettingsPrivacyNotice | |
| AppSettingsPrivacyPolicy | |
| AppSettingsPrivacyTitle | |
| AppSettingsSearch | |
| AppSettingsSendFeedback | |
| AppSettingsShowTour | |
| AppSettingsSupport | |
| AppSettingsTermsOfUse | |
| AppSettingsTitle | |
| AppSettingsYourRights | |
| AppStoreString | |
| AuthenticatorCancel | |
| AuthenticatorLogin | |
| AuthenticatorPasswordPlaceholder | |
| AuthenticatorPromptEmptyRealmMessage | |
| AuthenticatorPromptRealmMessage | |
| AuthenticatorPromptTitle | |
| AuthenticatorUsernamePlaceholder | |
| AutofillAddAddressTitle | |
| AutofillAddressArea | |
| AutofillAddressCity | |
| AutofillAddressCountryOnly | |
| AutofillAddressCountryRegion | |
| AutofillAddressCounty | |
| AutofillAddressDepartment | |
| AutofillAddressDistrict | |
| AutofillAddressDoSi | |
| AutofillAddressEircode | |
| AutofillAddressEmail | |
| AutofillAddressEmirate | |
| AutofillAddressIsland | |
| AutofillAddressName | |
| AutofillAddressNeighborhood | |
| AutofillAddressOblast | |
| AutofillAddressOrganization | |
| AutofillAddressParish | |
| AutofillAddressPin | |
| AutofillAddressPostTown | |
| AutofillAddressPostalCode | |
| AutofillAddressPrefecture | |
| AutofillAddressProvince | |
| AutofillAddressState | |
| AutofillAddressSuburb | |
| AutofillAddressTel | |
| AutofillAddressTownland | |
| AutofillAddressVillageTownship | |
| AutofillAddressZip | |
| AutofillCancelButton | |
| AutofillEditAddressTitle | |
| AutofillEditStreetAddressTitle | |
| AutofillSaveButton | |
| AutofillViewAddressTitle | |
| Autoplay | |
| Back | |
| BackButton | |
| BackButton | |
| BetterInternetDescription | |
| BetterInternetTitle | |
| BlockAudio | |
| BlockAudioAndVideo | |
| Blue | |
| BlueGradient | |
| Body | |
| Body | |
| Body | |
| Body | |
| Body | |
| Body | |
| Body | |
| Body | |
| BodyDefault | |
| BodySignedIn | |
| BodySignedOut | |
| BodyText | |
| BodyTreatmentA | |
| BodyTreatmentB | |
| BookmarkContextMenuTitle | |
| BookmarkDetailFieldTitle | |
| BookmarkDetailFieldURL | |
| BookmarkThisPage | |
| BookmarkThisPage | |
| BookmarkThisPageSubtitle | |
| BookmarkThisPageSubtitle | |
| Bookmarks | |
| Bookmarks | |
| Bookmarks | |
| Bookmarks | |
| Bookmarks | |
| BookmarksButtonAccessibilityLabel | |
| BookmarksDeleteFolderCancelButtonLabel | |
| BookmarksDeleteFolderDeleteButtonLabel | |
| BookmarksDeleteFolderWarningDescription | |
| BookmarksDeleteFolderWarningTitle | |
| BookmarksEdit | |
| BookmarksEditBookmark | |
| BookmarksEditFolder | |
| BookmarksFolder | |
| BookmarksFolderTitleMenu | |
| BookmarksFolderTitleMobile | |
| BookmarksFolderTitleToolbar | |
| BookmarksFolderTitleUnsorted | |
| BookmarksNewBookmark | |
| BookmarksNewFolder | |
| BookmarksNewSeparator | |
| BookmarksPanelDeleteTableAction | |
| BookmarksSavedShowAllText | |
| BookmarksSectionTitle | |
| Bottom | |
| BottomAction | |
| BreachAlertsBreachDate | |
| BreachAlertsDescription | |
| BreachAlertsLearnMore | |
| BreachAlertsLink | |
| BreachAlertsTitle | |
| BrowserThemeSectionHeader | |
| ButtonDescription | |
| ButtonLabel | |
| ButtonNo | |
| ButtonTitle | |
| ButtonTitle | |
| ButtonTitle | |
| ButtonTitle | |
| ButtonYes | |
| CancelButton | |
| CancelButton | |
| CancelButtonTitle | |
| CancelDownloadDialogCancel | |
| CancelDownloadDialogMessage | |
| CancelDownloadDialogResume | |
| CancelDownloadDialogTitle | |
| CancelEditButtonLabel | |
| CancelNavBarButtonLabel | |
| CancelRemoveCardButton | |
| CancelString | |
| CardExpirationDateSublabel | |
| CardExpirationDateTitle | |
| CardNumberSublabel | |
| CardNumberTitle | |
| ClassicWallpaper | |
| ClassicWallpaper | |
| ClearAllWebsiteDataAlertMessage | |
| ClearGroupedTabsCancel | |
| ClearGroupedTabsDelete | |
| ClearGroupedTabsTitle | |
| ClearHistoryMenuOptionEverything | |
| ClearHistoryMenuOptionTheLastHour | |
| ClearHistoryMenuOptionToday | |
| ClearHistoryMenuOptionTodayAndYesterday | |
| ClearHistoryMenuTitle | |
| ClearPrivateDataAlertCancel | |
| ClearPrivateDataAlertMessage | |
| ClearPrivateDataAlertOk | |
| ClearRecentHistory | |
| ClearSelectedWebsiteDataAlertMessage | |
| ClearSyncedHistoryAlertCancel | |
| ClearSyncedHistoryAlertMessage | |
| ClearSyncedHistoryAlertOk | |
| ClearWebsiteDataAlertCancel | |
| ClearWebsiteDataAlertOk | |
| ClearableCache | |
| ClearableCookies | |
| ClearableDownloads | |
| ClearableHistory | |
| ClearableOfflineData | |
| ClearableSpotlight | |
| CloseAllInactiveTabsButton | |
| CloseAllTabsInTabTray | |
| CloseButton | |
| CloseButton | |
| CloseButtonA11yLabel | |
| CloseButtonAccessibilityLabel | |
| CloseButtonAccessibilityLabel | |
| CloseButtonAccessibilityLabel | |
| CloseButtonAccessibilityLabel | |
| CloseButtonLabel | |
| CloseButtonTitle | |
| CloseCurrentTab | |
| CloseInactiveTabSwipeActionTitle | |
| CloseNavBarButtonLabel | |
| CloseNavBarButtonLabel | |
| ClosePrivateTab | |
| ClosePrivateTabsLabelV2 | |
| CloseTabViewActionTitle | |
| CloseTab_ArrivingNotification_title | |
| CloseThisTabButton | |
| CollectionTitle | |
| ConcealLabel | |
| ConfirmButton | |
| ConfirmationCardButtonText | |
| ConfirmationCardTitle | |
| ConfirmationLabel | |
| ContextMenuBookmarkLink | |
| ContextMenuButtonToastNewPrivateTabOpenedLabelText | |
| ContextMenuButtonToastNewTabOpenedButtonText | |
| ContextMenuButtonToastNewTabOpenedLabelText | |
| ContextMenuCopyImage | |
| ContextMenuCopyImageLink | |
| ContextMenuCopyLink | |
| ContextMenuDownloadLink | |
| ContextMenuOpenInNewPrivateTab | |
| ContextMenuOpenInNewTab | |
| ContextMenuSaveImage | |
| ContextMenuShareLink | |
| ContextualHintsCloseAccessibility | |
| ContinueAction | |
| ContinueAction | |
| ContinueAction | |
| ContinueAction | |
| CopyAddressTitle | |
| CopyButtonTitle | |
| CopyLabel | |
| CopyPasswordButtonLabel | |
| CouldntChangeWallpaperErrorBody | |
| CouldntChangeWallpaperErrorTitle | |
| CouldntDownloadWallpaperErrorBody | |
| CouldntDownloadWallpaperErrorTitle | |
| CoverSheetETPDescription | |
| CoverSheetETPSettingsButton | |
| CoverSheetETPTitle | |
| CrashOptInAlertAlwaysSend | |
| CrashOptInAlertDontSend | |
| CrashOptInAlertMessage | |
| CrashOptInAlertSend | |
| CrashOptInAlertTitle | |
| CredentialProviderRetryAlertCancelActionTitle | |
| CredentialProviderRetryAlertMessage | |
| CredentialProviderRetryAlertRetryActionTitle | |
| CredentialProviderRetryAlertTitle | |
| CreditCardSaveSuccessToastMessage | |
| CreditCardUpdateSuccessToastMessage | |
| CustomEngineDuplicateErrorMessage | |
| CustomEngineDuplicateErrorTitle | |
| CustomEngineFormErrorMessage | |
| CustomEngineFormErrorTitle | |
| CustomNewPageURL | |
| CustomizeHomePage | |
| CustomizeHomepage | |
| CustomizeHomepage | |
| DarkAction | |
| DarkPurple | |
| DefaultBrowserMenuItem | |
| DefaultBrowserOnboardingButton | |
| DefaultBrowserOnboardingDescriptionStep1 | |
| DefaultBrowserOnboardingDescriptionStep2 | |
| DefaultBrowserOnboardingDescriptionStep3 | |
| DefaultBrowserOnboardingScreenshot | |
| DefaultSearchEngine | |
| DefaultSearchEngineTitle | |
| DefaultSuggestedAmazon | |
| DefaultSuggestedFacebook | |
| DefaultSuggestedTwitter | |
| DefaultSuggestedWikipedia | |
| DefaultSuggestedX | |
| DefaultSuggestedYouTube | |
| DefaultWallpaper | |
| Delete | |
| DeleteBookmark | |
| DeleteFolder | |
| DeleteFromHistoryContextMenuTitle | |
| DeleteLoginAlertCancel | |
| DeleteLoginAlertDelete | |
| DeleteLoginAlertLocalMessage | |
| DeleteLoginAlertSyncedMessage | |
| DeleteLoginAlertTitle | |
| DeleteTitle | |
| DeletedBookmark | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| Description | |
| DescriptionFooter | |
| DescriptionPart1 | |
| DescriptionPart2 | |
| DescriptionTreatementA | |
| DesktopBookmarks | |
| DeviceInfoClientNameDescription | |
| DiscoverMore | |
| DismissButtonLabel | |
| DisplayThemeAutomaticStatusLabel | |
| DisplayThemeAutomaticSwitchSubtitle | |
| DisplayThemeAutomaticSwitchTitle | |
| DisplayThemeBrightnessThresholdSectionHeader | |
| DisplayThemeManualStatusLabel | |
| DisplayThemeManualSwitchSubtitle | |
| DisplayThemeManualSwitchTitle | |
| DisplayThemeOptionDark | |
| DisplayThemeOptionLight | |
| DisplayThemeSectionFooter | |
| DocumentLoadingAccessibilityLabel | |
| DocumentLoadingLabel | |
| Done | |
| DownloadCancelledToastLabelText | |
| DownloadFailedToastLabelText | |
| DownloadMultipleFilesAndProgressToastDescriptionText | |
| DownloadMultipleFilesToastDescriptionText | |
| DownloadProgressToastDescriptionText | |
| Downloads | |
| Downloads | |
| DownloadsButtonTitle | |
| ETPOff | |
| ETPOn | |
| EditBookmark | |
| EditBookmark | |
| EditBookmark | |
| EditBookmarkDesktopBookmarksLabel | |
| EditBookmarkLabel | |
| EditBookmarkSave | |
| EditBookmarkSaveIn | |
| EditBookmarkTitle | |
| EditContextMenuTitle | |
| EditCreditCardTitle | |
| EditFolder | |
| EditNavBarButtonLabel | |
| EditNavBarButtonLabel | |
| EmptyListDescription | |
| EmptyListTitle | |
| EmptyStateTitle | |
| EmptySyncedTabsPanelNotSignedInStateDescription | |
| EmptySyncedTabsPanelNullStateDescription | |
| EmptySyncedTabsPanelStateTitle | |
| EngineSectionTitle | |
| EnginesSuggestionsTitle | |
| ErrorPageOpenInSafari | |
| ErrorPageTryAgain | |
| ErrorPagesAdvancedButton | |
| ErrorPagesAdvancedWarning1 | |
| ErrorPagesAdvancedWarning2 | |
| ErrorPagesCertWarningDescription | |
| ErrorPagesCertWarningTitle | |
| ErrorPagesGoBackButton | |
| ErrorPagesVisitOnceButton | |
| ExpiredDateTitle | |
| ExpiresLabel | |
| ExternalInvalidLinkMessage | |
| ExternalLinkAppStoreConfirmationTitle | |
| ExternalLinkGenericConfirmation | |
| ExternalMailLinkConfirmation | |
| ExternalOpenMessage | |
| ExternalSmsLinkConfirmation | |
| FallbackTitle | |
| FileCountText | |
| FileNameText | |
| FileProgressText | |
| Find | |
| FindAgain | |
| FindInPage | |
| FindInPage | |
| FindInPageDoneAccessibilityLabel | |
| FindInPageNextAccessibilityLabel | |
| FindInPagePreviousAccessibilityLabel | |
| FingerPrintReason | |
| FirefoxHomeJumpBackInSectionTitle | |
| FirefoxHomePage | |
| FirefoxShortcutGalleryDescription | |
| FirefoxSyncAddressesEngine | |
| FirefoxSyncBookmarksEngine | |
| FirefoxSyncCreditCardsEngine | |
| FirefoxSyncHistoryEngine | |
| FirefoxSyncLoginsEngine | |
| FirefoxSyncOfflineTitle | |
| FirefoxSyncTabsEngine | |
| FirefoxSyncTroubleshootTitle | |
| FirstInstruction | |
| Footer | |
| Forward | |
| FxAAccountVerifyPassword | |
| FxAFirefoxAccount | |
| FxAManageAccount | |
| FxANoInternetConnection | |
| FxAPush_DeviceConnected_body | |
| FxAPush_DeviceConnected_title | |
| FxAPush_DeviceDisconnected_ThisDevice_body | |
| FxAPush_DeviceDisconnected_ThisDevice_title | |
| FxAPush_DeviceDisconnected_UnknownDevice_body | |
| FxAPush_DeviceDisconnected_title | |
| FxASettingsDeviceName | |
| FxASettingsSyncSettings | |
| FxASettingsTitle | |
| FxASignin_EmailSignin | |
| FxASignin_QRInstructions | |
| FxASignin_QRScanSignin | |
| FxASignin_Subtitle | |
| FxASyncNow | |
| FxAWebContentAccessibilityLabel | |
| FxAmethystWallpaper | |
| FxBeachHillsWallpaper | |
| FxCeruleanWallpaper | |
| FxHomepageWallpaperButton | |
| FxSunriseWallpaper | |
| FxTwilightHillsWallpaper | |
| GetHelp | |
| GetHelp | |
| GetStartedAction | |
| GoButtonTittle | |
| GoToCopiedLink | |
| GoToCopiedLinkLabel | |
| GoToCopiedLinkLabelV2 | |
| GoogleEngineSectionTitle | |
| Green | |
| GroupSiteCount | |
| Header | |
| HeaderLabel | |
| HeaderLabel | |
| Help | |
| HighlightsCardCompetitivenessTitle | |
| HighlightsCardLessButtonTitle | |
| HighlightsCardMoreButtonTitle | |
| HighlightsCardPackagingTitle | |
| HighlightsCardPriceTitle | |
| HighlightsCardQualityTitle | |
| HighlightsCardShippingTitle | |
| HighlightsCardTitle | |
| History | |
| History | |
| History | |
| HistoryBackButtonTitle | |
| HistoryPanelClearHistoryButtonTitle | |
| HistoryPanelDelete | |
| HistoryPanelEmptyStateTitle | |
| HomeMenuButtonAccessibilityLabel | |
| HomeTabBannerButton | |
| HomeTabBannerCloseAccessibility | |
| HomeTabBannerDescription | |
| HomeTabBannerTitle | |
| Hug | |
| InactiveTabs | |
| InactiveTabsDescription | |
| IndependentVoicesDescription | |
| InfoCardFakespotDoesNotAnalyzeReviewsDescription | |
| InfoCardFakespotDoesNotAnalyzeReviewsTitle | |
| InfoCardInfoComingSoonDescription | |
| InfoCardInfoComingSoonTitle | |
| InfoCardNeedsAnalysisPrimaryAction | |
| InfoCardNeedsAnalysisTitle | |
| InfoCardNoInfoAvailableRightNowDescription | |
| InfoCardNoInfoAvailableRightNowTitle | |
| InfoCardNotEnoughReviewsDescription | |
| InfoCardNotEnoughReviewsTitle | |
| InfoCardProductNotInStockDescription | |
| InfoCardProductNotInStockPrimaryAction | |
| InfoCardProductNotInStockTitle | |
| InfoCardProgressAnalysisDescription | |
| InfoCardProgressAnalysisTitle | |
| InfoCardReportSubmittedByCurrentUserDescription | |
| InfoCardReportSubmittedByCurrentUserTitle | |
| JumpBackIn | |
| KeyboardAccessoryButtonLabel | |
| LastHour | |
| LastMonth | |
| LastWeek | |
| LaterAction | |
| Lazy | |
| LearnAboutSuggestions | |
| LearnAboutSuggestions | |
| LearnMore | |
| LearnMore | |
| LearnMore | |
| LearnMoreButton | |
| LegacyBookmarksFolderTitleMobile | |
| LibraryPanelBookmarksAccessibilityLabel | |
| LibraryPanelDownloadsAccessibilityLabel | |
| LibraryPanelHistoryAccessibilityLabel | |
| LibraryPanelReadingListAccessibilityLabel | |
| LightAction | |
| LikertScaleOption1 | |
| LikertScaleOption2 | |
| LikertScaleOption3 | |
| LikertScaleOption4 | |
| LikertScaleOption5 | |
| LikertScaleOption6 | |
| LimitedEditionDefaultDescription | |
| LimitedEditionWallpaper | |
| LimitedEditionWallpaper | |
| Link | |
| Links | |
| ListItemA11y | |
| ListItemA11y | |
| LocationA11yLabel | |
| LocationPlaceholder | |
| LoginDetailDelete | |
| LoginDetailModifiedAt | |
| LoginDetailPassword | |
| LoginDetailUsername | |
| LoginDetailWebsite | |
| LoginListCellNoUsername | |
| LoginListDelete | |
| LoginListDeleteToast | |
| LoginListDeselctAll | |
| LoginListSelctAll | |
| LoginsDevicePasscodeRequiredLearnMoreButtonTitle | |
| LoginsDevicePasscodeRequiredMessage | |
| LoginsHelperDontSaveButtonTitle | |
| LoginsHelperDontUpdateButtonTitle | |
| LoginsHelperSaveLoginButtonTitle | |
| LoginsHelperUpdateButtonTitle | |
| LoginsListNoLoginsFoundDescription | |
| LoginsListNoLoginsFoundTitle | |
| LoginsListNoMatchingResultSubtitle | |
| LoginsListNoMatchingResultTitle | |
| LoginsListSearchCancel | |
| LoginsListSearchPlaceholder | |
| LoginsListSearchPlaceholderCredential | |
| LoginsListSelectPasswordTitle | |
| LoginsListTitle | |
| LoginsOnboardingContinueButtonTitle | |
| LoginsOnboardingLearnMoreButtonTitle | |
| LoginsPasscodeRequirementWarning | |
| LoginsWelcomeTurnOnAutoFillButtonTitle | |
| LoginsWelcomeViewTagline | |
| LoginsWelcomeViewTitle2 | |
| LogoImageA11yLabel | |
| LogoImageA11yLabel | |
| MainButton | |
| MainButtonTitle | |
| MainButtonTitle | |
| MainMenu | |
| MainTitle | |
| MainTitle | |
| MainTitle | |
| ManageAddressesButton | |
| ManageCards | |
| ManageCardsButtonTitle | |
| ManageLink | |
| ManagePasswordsButton | |
| ManagePreferenceAgreement | |
| Media | |
| MenuButtonAccessibilityLabel | |
| MenuButtonAccessibilityLabel | |
| MenuHelperCopy | |
| MenuHelperFindInPage | |
| MenuHelperOpenAndFill | |
| MenuHelperPasteAndGo | |
| MenuHelperReveal | |
| MenuHelperSearchWithFirefox | |
| Message | |
| MoreOptionsA11yLabel | |
| MoreTabsLabel | |
| NameOnCardSublabel | |
| NameOnCardTitle | |
| NavButtonSaveTitle | |
| NavigationButtonsBody | |
| Never | |
| NewPrivateTab | |
| NewPrivateTab | |
| NewPrivateTab | |
| NewPrivateTab | |
| NewTab | |
| NewTab | |
| NewTab | |
| NewTab | |
| NewTabButton | |
| NewTabSectionNameFooter | |
| NextButtonA11yLabel | |
| NextLevelDescription | |
| NextLevelTitle | |
| NightModeOff | |
| NightModeOff | |
| NightModeOn | |
| NightModeOn | |
| NightModeSubtitle | |
| NightModeSubtitle | |
| NoAnalysisCardAnalyzerButtonTitle | |
| NoAnalysisCardBodyLabelTitle | |
| NoAnalysisCardHeadlineLabelTitle | |
| NoHistoryResult | |
| NoImageMode | |
| NoLoginsFound | |
| NoOpenTabsLabel | |
| NormalBrowsingMode | |
| NotNow | |
| NotNowString | |
| NotOptedInAction | |
| NotOptedInBody | |
| NumberOfMinutes | |
| OKString | |
| Older | |
| OnboardingMessage | |
| OpenFirefoxLabel | |
| OpenInDownloadHelperAlertDownloadNow | |
| OpenInNewPrivateTabContextMenuTitle | |
| OpenInNewTabContextMenuTitle | |
| OpenNewTabInTabTray | |
| OpenSettingsString | |
| OptInCardDisclaimerText | |
| OptInCardFirstParagraph | |
| OptInCardFirstParagraphOneVendor | |
| OptInCardHeaderTitle | |
| OptInCardLearnMoreButtonTitle | |
| OptInCardMainButtonTitle | |
| OptInCardPrivacyPolicy | |
| OptInCardSecondParagraph | |
| OptInCardSecondaryButtonTitle | |
| OptInCardTermsOfUse | |
| OptedInAction | |
| OptedInBody | |
| OptionDisabledHint | |
| OptionsOrderAccessibilityLabel | |
| OrangeGradient | |
| PageTitle | |
| PagesCount | |
| PasswordReadoutPrefaceA11y | |
| Passwords | |
| Passwords | |
| PasteAndGoTitle | |
| PasteTitle | |
| PaymentMethodsDevicePasscodeRequiredMessage | |
| PeaceOfMindDescription | |
| PeaceOfMindTitle | |
| PersonalizedHome | |
| PhotoLibraryFirefoxWouldLikeAccessMessage | |
| PhotoLibraryFirefoxWouldLikeAccessTitle | |
| PinTopsiteActionTitle2 | |
| Pink | |
| Pixelated | |
| PreviousButtonA11yLabel | |
| Pride | |
| PrintSubtitle | |
| PrintSubtitle | |
| PrivacyAndSecuritySettingsA11yLabel | |
| PrivacyNoticeAgreement | |
| PrivacyNoticeLink | |
| PrivacyPolicyLinkButtonTitle | |
| PrivacyPolicyLinkButtonTitle | |
| PrivateBrowsingLearnMore | |
| PrivateBrowsingMode | |
| PrivateBrowsingTitle | |
| PrivateSessionDescription | |
| PrivateSessionDescription | |
| PrivateSessionSetting | |
| ProtectionStatusNotSecure | |
| ProtectionStatusSecure | |
| QuickActionGalleryDescription | |
| QuickActionsGalleryTitle | |
| QuickActionsGalleryTitlev2 | |
| QuickActionsLastBookmarkTitle | |
| QuickViewGalleryDescriptionV2 | |
| QuickViewGalleryTitle | |
| RateOnAppStore | |
| ReaderModeAddPageGeneralErrorAccessibilityLabel | |
| ReaderModeAddPageMaybeExistsErrorAccessibilityLabel | |
| ReaderModeAddPageSuccessAcessibilityLabel | |
| ReaderModeAvailableVoiceOverAnnouncement | |
| ReaderModeBarAddToReadingList | |
| ReaderModeBarMarkAsRead | |
| ReaderModeBarMarkAsUnread | |
| ReaderModeBarRemoveFromReadingList | |
| ReaderModeBarSettings | |
| ReaderModeHandlerError | |
| ReaderModeHandlerLoadOriginalPage | |
| ReaderModeHandlerLoadingContent | |
| ReaderModeHandlerPageCantDisplay | |
| ReaderModeResetFontSizeAccessibilityLabel | |
| ReaderModeStyleBrightnessAccessibilityLabel | |
| ReaderModeStyleChangeColorSchemeAccessibilityHint | |
| ReaderModeStyleDarkLabel | |
| ReaderModeStyleFontSize | |
| ReaderModeStyleFontTypeAccessibilityLabel | |
| ReaderModeStyleLargerAccessibilityLabel | |
| ReaderModeStyleLargerLabel | |
| ReaderModeStyleLightLabel | |
| ReaderModeStyleSansSerifFontType | |
| ReaderModeStyleSepiaLabel | |
| ReaderModeStyleSerifFontType | |
| ReaderModeStyleSmallerAccessibilityLabel | |
| ReaderModeStyleSmallerLabel | |
| ReaderPanelMarkAsRead | |
| ReaderPanelReadAccessibilityLabel | |
| ReaderPanelReadingListDescription | |
| ReaderPanelReadingModeDescription | |
| ReaderPanelRemove | |
| ReaderPanelUnreadAccessibilityLabel | |
| ReaderPanelWelcome | |
| ReaderViewOff | |
| ReaderViewOff | |
| ReaderViewOn | |
| ReaderViewOn | |
| ReaderViewSubtitle | |
| ReaderViewSubtitle | |
| ReadingList | |
| RecentButtonTitle | |
| RecentlyClosedTabs | |
| RecentlyClosedTabsButtonTitle | |
| RecentlyClosedTabsPanelTitle | |
| RecentlySaved | |
| RecentlySavedSectionTitle | |
| RecentlySavedShowAllText | |
| RecentlyVisited | |
| RedGradient | |
| RefreshPasswordButtonA11yLabel | |
| Regular | |
| ReliabilityCardTitle | |
| ReliabilityRatingAB | |
| ReliabilityRatingC | |
| ReliabilityRatingDF | |
| ReliabilityScoreGradeA11yLabel | |
| ReloadPage | |
| ReloadWithoutCache | |
| RememberThisCard | |
| RemoteTabCreateAccount | |
| RemoteTabErrorFailedToSync | |
| RemoteTabErrorNoTabs | |
| Remove | |
| RemoveAddressButtonTitle | |
| RemoveAddressMessage | |
| RemoveAddressTitle | |
| RemoveBookmark | |
| RemoveBookmarkConfirmMessage | |
| RemoveBookmarkContextMenuTitle | |
| RemoveButtonTitle | |
| RemoveCardButtonTitle | |
| RemoveCardSublabel | |
| RemoveCardTitle | |
| RemoveContextMenuTitle | |
| RemoveFromReadingList | |
| RemoveFromReadingList | |
| RemoveFromReadingListConfirmMessage | |
| RemoveFromShortcuts | |
| RemoveFromShortcuts | |
| RemoveFromShortcuts | |
| RemovePinFromShortcutsConfirmMessage | |
| RemoveReadingList | |
| RemovedCardLabel | |
| RemovedCardLabel | |
| ReportBrokenSite | |
| ReportBrokenSite | |
| ReportBrokenSiteSubtitle | |
| ReportBrokenSiteSubtitle | |
| Retro | |
| RevealLabel | |
| ReviewQualityCardAdjustedRatingLabel | |
| ReviewQualityCardCollapseAccessibilityLabel | |
| ReviewQualityCardExpandAccessibilityLabel | |
| ReviewQualityCardHeadlineLabel | |
| ReviewQualityCardHighlightsLabel | |
| ReviewQualityCardLabelTitle | |
| ReviewQualityCardLearnMoreButtonTitle | |
| ReviewQualityCardMixedReviewsLabel | |
| ReviewQualityCardReliableReviewsLabel | |
| ReviewQualityCardSubHeadlineLabel | |
| ReviewQualityCardUnreliableReviewsLabel | |
| RowSettingFooter | |
| Rows | |
| RowsPageTitle | |
| Save | |
| Save | |
| Save | |
| SaveAddressesToFirefox | |
| SaveAsPDF | |
| SaveAsPDF | |
| SaveAsPDFSubtitle | |
| SaveAsPDFSubtitle | |
| SaveLoginPrompt | |
| SaveLoginUsernamePrompt | |
| SaveNavBarButtonLabel | |
| SavePasswords | |
| SaveToReadingList | |
| SaveToReadingList | |
| SaveToReadingListSubtitle | |
| SaveToReadingListSubtitle | |
| SavedAddressesSectionTitle | |
| SavedBookmarkToastDefaultFolderLabel | |
| SavedBookmarkToastLabel | |
| SavedCardLabel | |
| SavedCardListTitle | |
| ScanQRCodeConfirmOpenURLMessage | |
| ScanQRCodeErrorOKButton | |
| ScanQRCodeInstructionsLabel | |
| ScanQRCodeInvalidDataErrorMessage | |
| ScanQRCodePermissionErrorMessage | |
| ScanQRCodeURLPromptAllowButton | |
| ScanQRCodeURLPromptDenyButton | |
| ScanQRCodeViewTitle | |
| ScreenTitle | |
| SearchBarBottomPlacement | |
| SearchBarPlacementButtonText | |
| SearchBarTopPlacement | |
| SearchBookmarks | |
| SearchBrowsingHistory | |
| SearchEngineA11yHint | |
| SearchEngineA11yLabel | |
| SearchEnginePickerCancel | |
| SearchEnginePickerTitle | |
| SearchHistoryPlaceholder | |
| SearchInFirefoxV2 | |
| SearchInPrivateTabLabelV2 | |
| SearchInputAccessibilityLabel | |
| SearchInputClearAccessibilityLabel | |
| SearchInputEnterSearchMode | |
| SearchInputTitle | |
| SearchSearchEngineAccessibilityLabel | |
| SearchSettings | |
| SearchSettingsAccessibilityLabel | |
| SearchSettingsHint | |
| SearchSettingsLabel | |
| SearchSuggestionCellSwitchToTabLabel | |
| SearchSyncedTabs | |
| SecondInstruction | |
| SecondaryButtonTitle | |
| SecondaryButtonTitle | |
| SectionDescription | |
| SectionTitle | |
| SectionTitle | |
| SecureSaveInfo | |
| SelectErrorConfirmation | |
| SelectErrorMessage | |
| SelectLocationBar | |
| SelectorDescription | |
| SelectorTitle | |
| SendCrashReportsDescription | |
| SendCrashReportsSettingLink | |
| SendCrashReportsSettingLinkV2 | |
| SendCrashReportsSettingMessage | |
| SendCrashReportsSettingMessageV2 | |
| SendCrashReportsSettingTitle | |
| SendCrashReportsTitle | |
| SendDailyUsagePingSettingLink | |
| SendDailyUsagePingSettingLinkV2 | |
| SendDailyUsagePingSettingMessage | |
| SendDailyUsagePingSettingTitle | |
| SendLinkToDeviceTitle | |
| SendTechnicalDataDescription | |
| SendTechnicalDataSettingLink | |
| SendTechnicalDataSettingLinkV2 | |
| SendTechnicalDataSettingMessage | |
| SendTechnicalDataSettingMessageV2 | |
| SendTechnicalDataSettingTitle | |
| SendTechnicalDataSettingTitleV2 | |
| SendTechnicalDataTitle | |
| SendToCancelButton | |
| SendToCloseButton | |
| SendToDeviceButtonTitle | |
| SendToDeviceTitle | |
| SendToDevicesListTitle | |
| SendToErrorMessage | |
| SendToErrorOKButton | |
| SendToErrorTitle | |
| SendToNoDevicesFound | |
| SendToNotSignedInMessage | |
| SendToNotSignedInText | |
| SendToSendButtonTitle | |
| SendToTitle | |
| SendUsageSettingLink | |
| SendUsageSettingMessage | |
| SendUsageSettingTitle | |
| SentTabViewActionTitle | |
| SentTab_NoTabArrivingNotification_title | |
| SentTab_TabArrivingNotification_NoDevice_title | |
| SettingToShowLoginsInAppMenu | |
| Settings | |
| Settings | |
| Settings | |
| Settings | |
| SettingsAddCustomEngine | |
| SettingsAddCustomEngineSaveButtonText | |
| SettingsAddCustomEngineTitle | |
| SettingsAddCustomEngineTitleLabel | |
| SettingsAddCustomEngineTitlePlaceholder | |
| SettingsAddCustomEngineURLLabel | |
| SettingsAddCustomEngineURLPlaceholder | |
| SettingsAddressAutofill | |
| SettingsAppearanceTitle | |
| SettingsAutofillCreditCard | |
| SettingsBlockOpeningExternalAppsTitle | |
| SettingsCardCollapseAccessibilityLabel | |
| SettingsCardExpandAccessibilityLabel | |
| SettingsCardFooterAction | |
| SettingsCardGroupedRecommendedProductsAndSwitchAccessibilityHint | |
| SettingsCardGroupedRecommendedProductsAndSwitchAccessibilityLabel | |
| SettingsCardLabelTitle | |
| SettingsCardRecommendedProductsLabel | |
| SettingsCardSwitchValueOffAccessibilityLabel | |
| SettingsCardSwitchValueOnAccessibilityLabel | |
| SettingsCardTurnOffButton | |
| SettingsClearAllWebsiteDataButton | |
| SettingsClearPrivateDataClearButton | |
| SettingsClearPrivateDataSectionName | |
| SettingsClearSelectedWebsiteDataButton | |
| SettingsContentPageLoadError | |
| SettingsCopyAppVersionAlertTitle | |
| SettingsDataManagementSectionName | |
| SettingsDataManagementTitle | |
| SettingsDisconnectCancelAction | |
| SettingsDisconnectDestructiveAction | |
| SettingsDisconnectSyncAlertBody | |
| SettingsDisconnectSyncAlertTitle | |
| SettingsDisconnectSyncButton | |
| SettingsDisplayThemeTitle | |
| SettingsFilterSitesSearchLabel | |
| SettingsGeneralSectionTitle | |
| SettingsHomePageSectionName | |
| SettingsHomePageURLSectionTitle | |
| SettingsNewTabBlankPage | |
| SettingsNewTabCustom | |
| SettingsNewTabSectionName | |
| SettingsNewTabTitle | |
| SettingsNewTabTopSites | |
| SettingsOfferClipboardBarStatus | |
| SettingsOfferClipboardBarTitle | |
| SettingsOpenWithPageTitle | |
| SettingsOpenWithSectionName | |
| SettingsOptionName | |
| SettingsSearchDoneButton | |
| SettingsSearchEditButton | |
| SettingsShowLinkPreviewsStatus | |
| SettingsShowLinkPreviewsTitle | |
| SettingsSiriOpenURL | |
| SettingsSiriSectionDescription | |
| SettingsSiriSectionName | |
| SettingsStudiesToggleLink | |
| SettingsStudiesToggleMessage | |
| SettingsStudiesToggleTitle | |
| SettingsTrackingProtectionSectionName | |
| SettingsWebsiteDataShowMoreButton | |
| SettingsWebsiteDataTitle | |
| Share | |
| Share | |
| Share | |
| ShareAddToReadingList | |
| ShareAddToReadingListDone | |
| ShareBookmarkThisPage | |
| ShareBookmarkThisPageDone | |
| ShareContextMenuTitle | |
| ShareLoadInBackground | |
| ShareLoadInBackgroundDone | |
| ShareMessageA | |
| ShareMessageA | |
| ShareMessageB | |
| ShareMessageB | |
| ShareOpenInFirefox | |
| ShareSearchInFirefox | |
| ShareSubtitle | |
| ShareSubtitle | |
| ShareTitle | |
| SheetHeaderBetaTitle | |
| SheetHeaderTitle | |
| Shortcuts | |
| ShortcutsPageTitle | |
| ShortcutsToggle | |
| ShowBookmarks | |
| ShowDownloads | |
| ShowFirstTab | |
| ShowHistory | |
| ShowLastTab | |
| ShowNextTab | |
| ShowNonSponsoredSuggestionsDescription | |
| ShowNonSponsoredSuggestionsTitle | |
| ShowPreviousTab | |
| ShowSearchSuggestions | |
| ShowSponsoredSuggestionsDescription | |
| ShowSponsoredSuggestionsTitle | |
| ShowTabTray | |
| SignInAction | |
| SignInWithSavedPassword | |
| SignedOutDescription | |
| SignedOutTitle | |
| SingleTabTitle | |
| Skip | |
| SkipAction | |
| SkipAction | |
| SkipAction | |
| SkipAction | |
| SkipAction | |
| SocialSettingsToggleSubtitle | |
| SocialSettingsToggleTitle | |
| Sponsored | |
| Sponsored | |
| SponsoredContent | |
| SponsoredShortcutsToggle | |
| SponsoredSuggestionDescription | |
| StudiesSettingLinkV2 | |
| StudiesSettingMessageV2 | |
| StudiesSettingTitleV2 | |
| SubmitSurveyButton | |
| Subtitle | |
| SuggestSectionTitle | |
| SurveyA11yLabel | |
| SwitchDescription | |
| SwitchTitle | |
| SwitchTitle | |
| SwitchToDesktopSite | |
| SwitchToDesktopSite | |
| SwitchToMobileSite | |
| SwitchToMobileSite | |
| SyncAndSaveData | |
| SyncErrorDescription | |
| SyncErrorTitle | |
| SyncNotificationsStatus | |
| SyncNotificationsTitle | |
| SyncTabs | |
| SyncTabsDisabled | |
| SyncedHistory | |
| SyncedTab | |
| SyncedTabOpenTabA11y | |
| SyncedTabShowAllButtonTitle | |
| SyncedTabTitle | |
| SyncingMessageWithEllipsis | |
| SystemAction | |
| SystemThemeSectionHeader | |
| SystemThemeSectionSwitchTitle | |
| TPAccessoryInfoBlocksTitle | |
| TPCategoryDescriptionContentTrackers | |
| TPCategoryDescriptionCrossSite | |
| TPCategoryDescriptionCryptominers | |
| TPCategoryDescriptionFingerprinters | |
| TPCategoryDescriptionSocial | |
| TPContentBlocked | |
| TPCrossSiteBlocked | |
| TPCryptominersBlocked | |
| TPDetailsVerifiedBy | |
| TPFingerprintersBlocked | |
| TPProtectionSettings | |
| TPSocialBlocked | |
| TabGroups | |
| TabLocationAddressBarAccessibilityLabel | |
| TabLocationETPOffNotSecureAccessibilityLabel | |
| TabLocationETPOffSecureAccessibilityLabel | |
| TabLocationETPOnNotSecureAccessibilityLabel | |
| TabLocationETPOnSecureAccessibilityLabel | |
| TabLocationLockButtonAccessibilityLabel | |
| TabLocationLockButtonLargeContentTitle | |
| TabLocationReaderModeAccessibilityLabel | |
| TabLocationReaderModeAddToReadingListAccessibilityLabel | |
| TabLocationReloadAccessibilityHint | |
| TabLocationReloadAccessibilityLabel | |
| TabLocationShareAccessibilityLabel | |
| TabLocationShareButtonLargeContentTitle | |
| TabLocationShoppingAccessibilityLabel | |
| TabLocationURLPlaceholder | |
| TabPeekAddToBookmarks | |
| TabPeekCloseTab | |
| TabPeekCopyUrl | |
| TabToolbarBackAccessibilityLabel | |
| TabToolbarDataClearanceAccessibilityLabel | |
| TabToolbarForwardAccessibilityLabel | |
| TabToolbarHomeAccessibilityLabel | |
| TabToolbarNavigationToolbarAccessibilityLabel | |
| TabToolbarReloadAccessibilityLabel | |
| TabToolbarSearchAccessibilityLabel | |
| TabToolbarStopAccessibilityLabel | |
| TabTrayAddTabAccessibilityLabel | |
| TabTrayButtonNewTabAccessibilityLabel | |
| TabTrayButtonShowTabsAccessibilityLabel | |
| TabTrayCloseAccessibilityCustomAction | |
| TabTrayCloseAllTabsPromptCancel | |
| TabTrayCurrentlySelectedTabAccessibilityLabel | |
| TabTrayDeleteMenuButtonAccessibilityLabel | |
| TabTrayNoTabsAccessibilityHint | |
| TabTrayOtherTabsSectionHeader | |
| TabTrayPrivateBrowsingTitle | |
| TabTraySegmentedControlTitlesPrivateTabs | |
| TabTraySegmentedControlTitlesSyncedTabs | |
| TabTraySegmentedControlTitlesTabs | |
| TabTraySwipeToCloseAccessibilityHint | |
| TabTrayToggleAccessibilityLabel | |
| TabTrayToggleAccessibilityValueOff | |
| TabTrayToggleAccessibilityValueOn | |
| TabTrayV2Title | |
| TabTrayViewAccessibilityLabel | |
| TabTrayVisiblePartialRangeAccessibilityHint | |
| TabTrayVisibleTabRangeAccessibilityHint | |
| Tabs | |
| TabsButtonAccessibilityLabel | |
| TabsButtonLargeContentTitle | |
| TabsButtonOverflowLargeContentTitle | |
| TabsButtonShowTabsAccessibilityLabel | |
| TabsButtonShowTabsLargeContentTitle | |
| TabsSectionTitle | |
| TabsTitle | |
| TabsTrayInactiveTabsSectionClosedAccessibilityTitle | |
| TabsTrayInactiveTabsSectionOpenedAccessibilityTitle | |
| TabsTrayInactiveTabsSectionTitle | |
| TakeSurveyButton | |
| TakeSurveyButtonLabel | |
| TermsOfServiceAgreement | |
| TermsOfServiceLink | |
| TermsOfUseLink | |
| ThemePickerSectionHeader | |
| ThemeSwitchModeSectionHeader | |
| ThirdInstruction | |
| ThirdPartySearchAddMessage | |
| ThirdPartySearchAddTitle | |
| ThirdPartySearchCancelButton | |
| ThirdPartySearchEngineAdded | |
| ThirdPartySearchFailedMessage | |
| ThirdPartySearchFailedTitle | |
| ThirdPartySearchOkayButton | |
| ThoughtProvokingStories | |
| ThoughtProvokingStoriesSubtitle | |
| TimeConstantJustNow | |
| TimeConstantMoreThanAMonth | |
| TimeConstantMoreThanAWeek | |
| TimeConstantRelativeToday | |
| TimeConstantThisWeek | |
| TimeConstantYesterday | |
| TipsAndFeaturesNotificationsStatus | |
| TipsAndFeaturesNotificationsTitle | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| Title | |
| TitleLabel | |
| TitleLabel | |
| TitleLabel | |
| TitleTreatmentA | |
| TitleTreatmentA | |
| TitleTreatmentB | |
| ToastTitle | |
| Today | |
| ToggleButton | |
| ToggleOff | |
| ToggleOn | |
| ToggleToAllowAutofillTitle | |
| Toolbar | |
| ToolbarButtonA11yLabel | |
| Tools | |
| Tools | |
| Tools | |
| Tools | |
| Top | |
| TopAction | |
| TopSitesGalleryDescription | |
| TopSitesGalleryTitle | |
| TopSitesGalleryTitleV2 | |
| TopSitesRemoveButtonAccessibilityLabel | |
| TopSitesRemoveButtonLargeContentTitle | |
| TopTitle | |
| TopTitleLabel | |
| TrackerProtectionLearnMore | |
| TrackingProtectionCellFooter | |
| TrackingProtectionEnableTitle | |
| TrackingProtectionLevelFooter | |
| TrackingProtectionOptionBlockListLevelStandard | |
| TrackingProtectionOptionBlockListLevelStandardStatus | |
| TrackingProtectionOptionBlockListLevelStrict | |
| TrackingProtectionOptionProtectionLevelTitle | |
| TrackingProtectionReloadWith | |
| TrackingProtectionReloadWithout | |
| TrackingProtectionStandardLevelDescription | |
| TrackingProtectionStrictLevelDescription | |
| TranslateSnackBarNo | |
| TranslateSnackBarPrompt | |
| TranslateSnackBarYes | |
| TurnOnNotificationsAction | |
| TurnOnNotificationsMessage | |
| TurnOnNotificationsTitle | |
| URLBarLocationAccessibilityLabel | |
| UnableToAddPassErrorDismiss | |
| UnableToAddPassErrorMessage | |
| UnableToAddPassErrorTitle | |
| UnableToOpenURLError | |
| UnableToOpenURLErrorTitle | |
| UndoString | |
| UniversalAuthenticationReason | |
| UniversalAuthenticationReasonV2 | |
| UnpinTopsiteActionTitle2 | |
| UnselectedRadioButtonAccessibilityLabel | |
| UpdateLoginPrompt | |
| UpdateLoginUsernamePrompt | |
| UpdateThisCard | |
| UpdatedCardLabel | |
| UseASavedAddress | |
| UseASavedCard | |
| UsePasswordButtonLabel | |
| UseSavedAddressFromKeyboard | |
| UseSavedCardFromKeyboard | |
| UseSavedPasswordFromHeader | |
| UseSavedPasswordFromKeyboard | |
| ViewCreditCardTitle | |
| Wallpaper | |
| WallpaperErrorDismiss | |
| WallpaperErrorTryAgain | |
| WallpaperUpdatedToastButton | |
| WallpaperUpdatedToastLabel | |
| WarningCardCheckNoConnectionDescription | |
| WarningCardCheckNoConnectionTitle | |
| WebViewAccessibilityLabel | |
| WebsiteAppearanceSectionHeader | |
| WebsiteDarkModeDescription | |
| WebsiteDarkModeOff | |
| WebsiteDarkModeOn | |
| WebsiteDarkModeToggleTitle | |
| WhatsNew | |
| WhatsNew | |
| WhatsNewString | |
| Window | |
| Yes | |
| Yesterday | |
| Zoom | |
| Zoom | |
| ZoomIn | |
| ZoomNegativeSymbol | |
| ZoomOut | |
| ZoomPageCloseAccessibilityLabel | |
| ZoomPageCurrentZoomLevelAccessibilityLabel | |
| ZoomPageDecreaseZoomAccessibilityLabel | |
| ZoomPageIncreaseZoomAccessibilityLabel | |
| ZoomPageTitle | |
| ZoomPositiveSymbol | |
| ZoomSubtitle | |
| ZoomSubtitle | |
| analyticsTrackersBlockedLabel | |
| certificateCommonName | |
| certificateIssuerCountry | |
| certificateIssuerName | |
| certificateIssuerOrganization | |
| certificateSubjectAltNames | |
| certificateSubjectAltNamesDNSName | |
| certificateSubjectName | |
| certificateValidity | |
| certificateValidityNotAfter | |
| certificateValidityNotBefore | |
| certificatesTitle | |
| clearDataAlertButton | |
| clearDataAlertCancelButton | |
| clearDataAlertText | |
| clearDataAlertTitle | |
| clearDataButtonTitle | |
| clearDataToastMessage | |
| closeButtonAccessibilityLabel | |
| connectionSecureLabel | |
| connectionUnsecureLabel | |
| connectionVerifiedByLabel | |
| crossSiteTrackersBlockedLabel | |
| fingerprinterBlockedLabel | |
| noTrackersLabel | |
| offHeader | |
| offTitle | |
| onHeader | |
| onNotSecureHeader | |
| onNotSecureTitle | |
| onTitle | |
| privacySettingsTitle | |
| removedSavedLoginsLabel | |
| socialMediaTrackersBlockedLabel | |
| switchOffText | |
| switchOnText | |
| switchTitle | |
| systemNotificationsDisabledMessage | |
| trackersBlockedLabel | |
| viewCertificatesButtonTitle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| A11yLabel | |
| AddToHomeScreen | |
| AddToHomeScreen | |
| AddToHomeScreenSubtitle | |
| AddToHomeScreenSubtitle | |
| AppSettingsPrivacyPolicy | |
| AppSettingsYourRights | |
| BetterInternetDescription | |
| BetterInternetTitle | |
| BodyText | |
| BodyTreatmentA | |
| BodyTreatmentB | |
| BottomAction | |
| BrowserThemeSectionHeader | |
| ButtonNo | |
| ButtonYes | |
| CancelRemoveCardButton | |
| ClearGroupedTabsCancel | |
| ClearGroupedTabsDelete | |
| ClearGroupedTabsTitle | |
| CloseAllTabsInTabTray | |
| CloseButtonLabel | |
| CollectionTitle | |
| ContinueAction | |
| ContinueAction | |
| ContinueAction | |
| ContinueAction | |
| CopyButtonTitle | |
| CoverSheetETPDescription | |
| CoverSheetETPSettingsButton | |
| CoverSheetETPTitle | |
| CrashOptInAlertAlwaysSend | |
| CrashOptInAlertDontSend | |
| CrashOptInAlertMessage | |
| CrashOptInAlertSend | |
| CrashOptInAlertTitle | |
| DarkAction | |
| DefaultSuggestedTwitter | |
| DefaultWallpaper | |
| DescriptionFooter | |
| DescriptionPart1 | |
| DescriptionPart2 | |
| DescriptionTreatementA | |
| DownloadFailedToastLabelText | |
| EditContextMenuTitle | |
| ExpiredDateTitle | |
| ExternalLinkGenericConfirmation | |
| FileCountText | |
| FileNameText | |
| FileProgressText | |
| FingerPrintReason | |
| FirstInstruction | |
| FxAmethystWallpaper | |
| FxBeachHillsWallpaper | |
| FxCeruleanWallpaper | |
| FxHomepageWallpaperButton | |
| FxSunriseWallpaper | |
| FxTwilightHillsWallpaper | |
| GetStartedAction | |
| GroupSiteCount | |
| HistoryBackButtonTitle | |
| HistoryPanelClearHistoryButtonTitle | |
| HomeMenuButtonAccessibilityLabel | |
| HomeTabBannerButton | |
| InfoCardProgressAnalysisDescription | |
| LightAction | |
| LocationA11yLabel | |
| NavButtonSaveTitle | |
| NextLevelDescription | |
| NextLevelTitle | |
| OpenNewTabInTabTray | |
| PageTitle | |
| PeaceOfMindDescription | |
| PeaceOfMindTitle | |
| RecentButtonTitle | |
| RecentlySavedSectionTitle | |
| RecentlySavedShowAllText | |
| RememberThisCard | |
| RemoteTabCreateAccount | |
| SearchEngineA11yHint | |
| SearchInputAccessibilityLabel | |
| SearchInputClearAccessibilityLabel | |
| SearchInputEnterSearchMode | |
| SearchInputTitle | |
| SecondInstruction | |
| SendToCloseButton | |
| SendToDeviceTitle | |
| SendUsageSettingLink | |
| SendUsageSettingMessage | |
| SendUsageSettingTitle | |
| SettingsAppearanceTitle | |
| SettingsStudiesToggleLink | |
| SettingsStudiesToggleMessage | |
| SettingsStudiesToggleTitle | |
| SyncedHistory | |
| SystemAction | |
| TPDetailsVerifiedBy | |
| TabGroups | |
| TabLocationShareButtonLargeContentTitle | |
| TabTrayButtonNewTabAccessibilityLabel | |
| TabTrayNoTabsAccessibilityHint | |
| TabTrayOtherTabsSectionHeader | |
| TabTrayVisiblePartialRangeAccessibilityHint | |
| TabTrayVisibleTabRangeAccessibilityHint | |
| TabsSectionTitle | |
| TabsTitle | |
| TermsOfServiceLink | |
| ThirdInstruction | |
| TitleTreatmentA | |
| TitleTreatmentA | |
| TitleTreatmentB | |
| ToggleButton | |
| ToolbarButtonA11yLabel | |
| TopAction | |
| TopTitle | |
| TopTitleLabel | |
| TurnOnNotificationsAction | |
| UnableToOpenURLError | |
| UnableToOpenURLErrorTitle | |
| UpdateThisCard | |
| UseASavedCard | |
| WebsiteAppearanceSectionHeader | |
| WebsiteDarkModeDescription | |
| WebsiteDarkModeOff | |
| WebsiteDarkModeOn | |
| WebsiteDarkModeToggleTitle | |
| removedSavedLoginsLabel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment