├── .github └── workflows │ └── update-langpack.yml ├── .gitignore ├── LICENSE ├── README.md ├── ar ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── assets ├── Floorp_Logo_f10n_Dark.svg ├── Floorp_Logo_f10n_Light.svg └── Link2MainRepo.svg ├── crowdin.yml ├── cs ├── .gitattributes ├── .hgtags ├── README.md ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── da ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README │ │ ├── da.aff │ │ └── da.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── de ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── el ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README.txt │ │ ├── el.aff │ │ └── el.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── en-GB ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── en-US └── floorp.ftl ├── es-ES ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── LICENSE.md │ │ ├── README.txt │ │ ├── es-ES.aff │ │ └── es-ES.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── fr ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README_fr.txt │ │ ├── fr.aff │ │ └── fr.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── hu ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README_hu.txt │ │ ├── hu.aff │ │ └── hu.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── id ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README_id_ID.txt │ │ ├── README_licenses.txt │ │ ├── README_permissions.txt │ │ ├── id.aff │ │ ├── id.dic │ │ └── mozilla_words.diff ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── it ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ └── android │ │ ├── chrome │ │ ├── browser.properties │ │ └── passwordmgr.properties │ │ └── mobile │ │ └── android │ │ ├── aboutConfig.ftl │ │ └── geckoViewConsole.ftl ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── ja-JP-mac ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README_en_US.txt │ │ ├── README_mozilla.txt │ │ ├── en-US.aff │ │ └── en-US.dic ├── mobile │ └── android │ │ ├── chrome │ │ ├── browser.properties │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ └── android │ │ ├── aboutConfig.ftl │ │ └── geckoViewConsole.ftl ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── ja ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README_en_US.txt │ │ ├── README_mozilla.txt │ │ ├── en-US.aff │ │ └── en-US.dic ├── mobile │ └── android │ │ ├── chrome │ │ ├── browser.properties │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ └── android │ │ ├── aboutConfig.ftl │ │ └── geckoViewConsole.ftl ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── ko ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── lt ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── COPYING │ │ ├── README │ │ ├── lt.aff │ │ └── lt.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── nl ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README.md │ │ ├── nl.aff │ │ └── nl.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── nn-NO ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── pl ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README │ │ ├── pl.aff │ │ └── pl.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── pt-BR ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README.txt │ │ ├── pt-BR.aff │ │ └── pt-BR.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── pt-PT ├── .hgignore ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── COPYING │ │ ├── README.txt │ │ ├── pt_PT.aff │ │ └── pt_PT.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── ru ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── license.txt │ │ ├── ru.aff │ │ └── ru.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── supported-languages ├── sv-SE ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── README_sv.txt │ │ ├── sv.aff │ │ └── sv.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── th ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── tr ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── uk ├── .hgignore ├── .hgtags ├── BUGS ├── TODO ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── license.txt │ │ ├── uk.aff │ │ └── uk.dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── update-langpack.sh ├── vi ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── extensions │ └── spellcheck │ │ └── hunspell │ │ ├── vi-x-KieuCu.[Chuan].aff │ │ ├── vi-x-KieuCu.[Chuan].dic │ │ ├── vi-x-KieuMoi.[KhongChuan].aff │ │ └── vi-x-KieuMoi.[KhongChuan].dic ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ ├── mobile-l10n.js │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl ├── zh-CN ├── .hgtags ├── browser │ ├── branding │ │ └── official │ │ │ ├── brand.ftl │ │ │ └── brand.properties │ ├── browser │ │ ├── aboutDialog.ftl │ │ ├── aboutLogins.ftl │ │ ├── aboutPocket.ftl │ │ ├── aboutPolicies.ftl │ │ ├── aboutPrivateBrowsing.ftl │ │ ├── aboutRestartRequired.ftl │ │ ├── aboutRobots.ftl │ │ ├── aboutSessionRestore.ftl │ │ ├── aboutTabCrashed.ftl │ │ ├── aboutUnloads.ftl │ │ ├── accounts.ftl │ │ ├── addonNotifications.ftl │ │ ├── allTabsMenu.ftl │ │ ├── appExtensionFields.ftl │ │ ├── appMenuNotifications.ftl │ │ ├── appmenu.ftl │ │ ├── backgroundtasks │ │ │ └── defaultagent.ftl │ │ ├── browser.ftl │ │ ├── browserContext.ftl │ │ ├── browserSets.ftl │ │ ├── colorways.ftl │ │ ├── components │ │ │ └── mozSupportLink.ftl │ │ ├── confirmationHints.ftl │ │ ├── contentCrash.ftl │ │ ├── customizeMode.ftl │ │ ├── defaultBrowserNotification.ftl │ │ ├── downloads.ftl │ │ ├── editBookmarkOverlay.ftl │ │ ├── extensionsUI.ftl │ │ ├── featureCallout.ftl │ │ ├── firefoxRelay.ftl │ │ ├── firefoxView.ftl │ │ ├── firefoxWebAuthn.ftl │ │ ├── floorp.ftl │ │ ├── fxviewTabList.ftl │ │ ├── identityCredentialNotification.ftl │ │ ├── linuxDesktopEntry.ftl │ │ ├── menubar.ftl │ │ ├── migration.ftl │ │ ├── migrationWizard.ftl │ │ ├── newtab │ │ │ ├── asrouter.ftl │ │ │ ├── newtab.ftl │ │ │ └── onboarding.ftl │ │ ├── originControls.ftl │ │ ├── pageInfo.ftl │ │ ├── panelUI.ftl │ │ ├── panicButton.ftl │ │ ├── places.ftl │ │ ├── placesPrompts.ftl │ │ ├── policies │ │ │ └── policies-descriptions.ftl │ │ ├── preferences │ │ │ ├── addEngine.ftl │ │ │ ├── applicationManager.ftl │ │ │ ├── blocklists.ftl │ │ │ ├── clearSiteData.ftl │ │ │ ├── colors.ftl │ │ │ ├── connection.ftl │ │ │ ├── containers.ftl │ │ │ ├── fonts.ftl │ │ │ ├── formAutofill.ftl │ │ │ ├── fxaPairDevice.ftl │ │ │ ├── languages.ftl │ │ │ ├── moreFromMozilla.ftl │ │ │ ├── permissions.ftl │ │ │ ├── preferences.ftl │ │ │ ├── selectBookmark.ftl │ │ │ ├── siteDataSettings.ftl │ │ │ └── translation.ftl │ │ ├── profile │ │ │ └── default-bookmarks.ftl │ │ ├── protections.ftl │ │ ├── protectionsPanel.ftl │ │ ├── recentlyClosed.ftl │ │ ├── reportBrokenSite.ftl │ │ ├── safeMode.ftl │ │ ├── safebrowsing │ │ │ └── blockedSite.ftl │ │ ├── sanitize.ftl │ │ ├── screenshots.ftl │ │ ├── screenshotsOverlay.ftl │ │ ├── search.ftl │ │ ├── setDesktopBackground.ftl │ │ ├── shopping.ftl │ │ ├── sidebarMenu.ftl │ │ ├── sitePermissions.ftl │ │ ├── siteProtections.ftl │ │ ├── speechDispatcher.ftl │ │ ├── spotlight.ftl │ │ ├── sync.ftl │ │ ├── syncedTabs.ftl │ │ ├── tabContextMenu.ftl │ │ ├── tabbrowser.ftl │ │ ├── textRecognition.ftl │ │ ├── toolbarContextMenu.ftl │ │ ├── touchbar │ │ │ └── touchbar.ftl │ │ ├── translations.ftl │ │ ├── unifiedExtensions.ftl │ │ ├── webProtocolHandler.ftl │ │ ├── webauthnDialog.ftl │ │ └── webrtcIndicator.ftl │ ├── chrome │ │ ├── browser │ │ │ ├── browser.properties │ │ │ ├── customizableui │ │ │ │ └── customizableWidgets.properties │ │ │ ├── downloads │ │ │ │ └── downloads.properties │ │ │ ├── feeds │ │ │ │ └── subscribe.properties │ │ │ ├── places │ │ │ │ └── bookmarkProperties.properties │ │ │ ├── safebrowsing │ │ │ │ └── safebrowsing.properties │ │ │ ├── search.properties │ │ │ ├── shellservice.properties │ │ │ ├── siteData.properties │ │ │ ├── sitePermissions.properties │ │ │ ├── syncSetup.properties │ │ │ ├── taskbar.properties │ │ │ └── uiDensity.properties │ │ └── overrides │ │ │ └── appstrings.properties │ ├── crashreporter │ │ └── crashreporter-override.ini │ ├── defaultagent │ │ └── defaultagent_localized.ini │ ├── extensions │ │ ├── formautofill │ │ │ └── formautofill.properties │ │ └── report-site-issue │ │ │ └── webcompat.properties │ ├── firefox-l10n.js │ ├── installer │ │ ├── custom.properties │ │ ├── mui.properties │ │ ├── nsisstrings.properties │ │ └── override.properties │ ├── langpack-metadata.ftl │ ├── pdfviewer │ │ ├── chrome.properties │ │ └── viewer.properties │ └── updater │ │ └── updater.ini ├── devtools │ ├── client │ │ ├── aboutdebugging.ftl │ │ ├── accessibility.ftl │ │ ├── accessibility.properties │ │ ├── animationinspector.properties │ │ ├── application.ftl │ │ ├── boxmodel.properties │ │ ├── changes.properties │ │ ├── compatibility.ftl │ │ ├── components.properties │ │ ├── debugger.properties │ │ ├── device.properties │ │ ├── dom.properties │ │ ├── filterwidget.properties │ │ ├── font-inspector.properties │ │ ├── har.properties │ │ ├── inspector.properties │ │ ├── jsonview.properties │ │ ├── layout.properties │ │ ├── memory.properties │ │ ├── menus.properties │ │ ├── netmonitor.properties │ │ ├── network-throttling.properties │ │ ├── perftools.ftl │ │ ├── responsive.properties │ │ ├── shared.properties │ │ ├── sourceeditor.properties │ │ ├── startup.properties │ │ ├── storage.ftl │ │ ├── styleeditor.ftl │ │ ├── styleeditor.properties │ │ ├── toolbox-options.ftl │ │ ├── toolbox.ftl │ │ ├── toolbox.properties │ │ ├── tooltips.ftl │ │ └── webconsole.properties │ ├── shared │ │ ├── accessibility.properties │ │ ├── debugger-paused-reasons.ftl │ │ ├── debugger.properties │ │ ├── eyedropper.properties │ │ ├── highlighters.ftl │ │ ├── screenshot.properties │ │ ├── shared.properties │ │ ├── styleinspector.properties │ │ └── webconsole-commands.ftl │ └── startup │ │ └── key-shortcuts.ftl ├── dom │ ├── chrome │ │ ├── accessibility │ │ │ ├── AccessFu.properties │ │ │ ├── mac │ │ │ │ └── accessible.properties │ │ │ ├── unix │ │ │ │ └── accessible.properties │ │ │ └── win │ │ │ │ └── accessible.properties │ │ ├── appstrings.properties │ │ ├── dom │ │ │ └── dom.properties │ │ ├── global-strres.properties │ │ ├── layout │ │ │ ├── HtmlForm.properties │ │ │ ├── MediaDocument.properties │ │ │ ├── css.properties │ │ │ ├── htmlparser.properties │ │ │ ├── layout_errors.properties │ │ │ ├── printing.properties │ │ │ ├── xmlparser.properties │ │ │ └── xul.properties │ │ ├── mathml │ │ │ └── mathml.properties │ │ ├── nsWebBrowserPersist.properties │ │ ├── security │ │ │ ├── caps.properties │ │ │ ├── csp.properties │ │ │ └── security.properties │ │ ├── svg │ │ │ └── svg.properties │ │ └── xslt │ │ │ └── xslt.properties │ └── dom │ │ ├── XMLPrettyPrint.ftl │ │ └── media.ftl ├── minimo │ └── chrome │ │ └── contents.rdf ├── mobile │ ├── android │ │ ├── chrome │ │ │ ├── browser.properties │ │ │ └── passwordmgr.properties │ │ └── mobile │ │ │ └── android │ │ │ ├── aboutConfig.ftl │ │ │ └── geckoViewConsole.ftl │ └── chrome │ │ └── region.properties ├── netwerk │ └── necko.properties ├── security │ └── manager │ │ ├── chrome │ │ ├── pipnss │ │ │ ├── nsserrors.properties │ │ │ └── pipnss.properties │ │ └── pippki │ │ │ └── pippki.properties │ │ └── security │ │ ├── certificates │ │ ├── certManager.ftl │ │ └── deviceManager.ftl │ │ └── pippki │ │ └── pippki.ftl └── toolkit │ ├── chrome │ ├── alerts │ │ └── alert.properties │ ├── autoconfig │ │ └── autoconfig.properties │ ├── global-platform │ │ ├── mac │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ ├── unix │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ │ └── win │ │ │ ├── intl.properties │ │ │ └── platformKeys.properties │ ├── global │ │ ├── aboutStudies.properties │ │ ├── autocomplete.properties │ │ ├── browser.properties │ │ ├── commonDialogs.properties │ │ ├── contentAreaCommands.properties │ │ ├── dialog.properties │ │ ├── extensions.properties │ │ ├── fallbackMenubar.properties │ │ ├── filepicker.properties │ │ ├── intl.css │ │ ├── intl.properties │ │ ├── keys.properties │ │ ├── narrate.properties │ │ ├── printdialog.properties │ │ ├── resetProfile.properties │ │ ├── viewSource.properties │ │ └── wizard.properties │ ├── mozapps │ │ ├── downloads │ │ │ ├── downloads.properties │ │ │ └── unknownContentType.properties │ │ ├── profile │ │ │ └── profileSelection.properties │ │ └── update │ │ │ └── updates.properties │ ├── passwordmgr │ │ └── passwordmgr.properties │ └── places │ │ └── places.properties │ ├── crashreporter │ ├── aboutcrashes.ftl │ ├── crashreporter.ftl │ └── crashreporter.ini │ ├── services │ └── accounts.ftl │ └── toolkit │ ├── about │ ├── aboutAbout.ftl │ ├── aboutAddons.ftl │ ├── aboutCompat.ftl │ ├── aboutGlean.ftl │ ├── aboutHttpsOnlyError.ftl │ ├── aboutLogging.ftl │ ├── aboutMozilla.ftl │ ├── aboutNetworking.ftl │ ├── aboutPerformance.ftl │ ├── aboutPlugins.ftl │ ├── aboutProcesses.ftl │ ├── aboutProfiles.ftl │ ├── aboutReader.ftl │ ├── aboutRights.ftl │ ├── aboutServiceWorkers.ftl │ ├── aboutSupport.ftl │ ├── aboutTelemetry.ftl │ ├── aboutThirdParty.ftl │ ├── aboutWebauthn.ftl │ ├── aboutWebrtc.ftl │ ├── aboutWindowsMessages.ftl │ ├── abuseReports.ftl │ ├── certviewer.ftl │ ├── config.ftl │ └── url-classifier.ftl │ ├── branding │ ├── accounts.ftl │ └── brandings.ftl │ ├── contentanalysis │ └── contentanalysis.ftl │ ├── downloads │ ├── downloadUI.ftl │ └── downloadUtils.ftl │ ├── featuregates │ └── features.ftl │ ├── formautofill │ └── formAutofill.ftl │ ├── global │ ├── alert.ftl │ ├── appPicker.ftl │ ├── arrowscrollbox.ftl │ ├── browser-utils.ftl │ ├── commonDialog.ftl │ ├── contextual-identity.ftl │ ├── cookieBannerHandling.ftl │ ├── createProfileWizard.ftl │ ├── cspErrors.ftl │ ├── datepicker.ftl │ ├── datetimebox.ftl │ ├── extensionPermissions.ftl │ ├── extensions.ftl │ ├── handlerDialog.ftl │ ├── htmlForm.ftl │ ├── mozCard.ftl │ ├── mozFiveStar.ftl │ ├── mozMessageBar.ftl │ ├── mozSupportLink.ftl │ ├── notification.ftl │ ├── popupnotification.ftl │ ├── processTypes.ftl │ ├── profileDowngrade.ftl │ ├── profileSelection.ftl │ ├── resetProfile.ftl │ ├── resistFingerPrinting.ftl │ ├── run-from-dmg.ftl │ ├── tabprompts.ftl │ ├── textActions.ftl │ ├── timepicker.ftl │ ├── tree.ftl │ ├── unknownContentType.ftl │ ├── videocontrols.ftl │ └── wizard.ftl │ ├── intl │ ├── languageNames.ftl │ └── regionNames.ftl │ ├── main-window │ ├── autocomplete.ftl │ └── findbar.ftl │ ├── neterror │ ├── certError.ftl │ ├── netError.ftl │ └── nsserrors.ftl │ ├── passwordmgr │ └── passwordmgr.ftl │ ├── payments │ └── payments.ftl │ ├── pdfviewer │ └── viewer.ftl │ ├── pictureinpicture │ └── pictureinpicture.ftl │ ├── preferences │ └── preferences.ftl │ ├── printing │ ├── printDialogs.ftl │ ├── printPreview.ftl │ └── printUI.ftl │ ├── reportBrokenSite │ └── reportBrokenSite.ftl │ └── updates │ ├── backgroundupdate.ftl │ ├── elevation.ftl │ └── history.ftl └── zh-TW ├── .hgtags ├── browser ├── branding │ └── official │ │ ├── brand.ftl │ │ └── brand.properties ├── browser │ ├── aboutDialog.ftl │ ├── aboutLogins.ftl │ ├── aboutPocket.ftl │ ├── aboutPolicies.ftl │ ├── aboutPrivateBrowsing.ftl │ ├── aboutRestartRequired.ftl │ ├── aboutRobots.ftl │ ├── aboutSessionRestore.ftl │ ├── aboutTabCrashed.ftl │ ├── aboutUnloads.ftl │ ├── accounts.ftl │ ├── addonNotifications.ftl │ ├── allTabsMenu.ftl │ ├── appExtensionFields.ftl │ ├── appMenuNotifications.ftl │ ├── appmenu.ftl │ ├── backgroundtasks │ │ └── defaultagent.ftl │ ├── browser.ftl │ ├── browserContext.ftl │ ├── browserSets.ftl │ ├── colorways.ftl │ ├── components │ │ └── mozSupportLink.ftl │ ├── confirmationHints.ftl │ ├── contentCrash.ftl │ ├── customizeMode.ftl │ ├── defaultBrowserNotification.ftl │ ├── downloads.ftl │ ├── editBookmarkOverlay.ftl │ ├── extensionsUI.ftl │ ├── featureCallout.ftl │ ├── firefoxRelay.ftl │ ├── firefoxView.ftl │ ├── firefoxWebAuthn.ftl │ ├── floorp.ftl │ ├── fxviewTabList.ftl │ ├── identityCredentialNotification.ftl │ ├── linuxDesktopEntry.ftl │ ├── menubar.ftl │ ├── migration.ftl │ ├── migrationWizard.ftl │ ├── newtab │ │ ├── asrouter.ftl │ │ ├── newtab.ftl │ │ └── onboarding.ftl │ ├── originControls.ftl │ ├── pageInfo.ftl │ ├── panelUI.ftl │ ├── panicButton.ftl │ ├── places.ftl │ ├── placesPrompts.ftl │ ├── policies │ │ └── policies-descriptions.ftl │ ├── preferences │ │ ├── addEngine.ftl │ │ ├── applicationManager.ftl │ │ ├── blocklists.ftl │ │ ├── clearSiteData.ftl │ │ ├── colors.ftl │ │ ├── connection.ftl │ │ ├── containers.ftl │ │ ├── fonts.ftl │ │ ├── formAutofill.ftl │ │ ├── fxaPairDevice.ftl │ │ ├── languages.ftl │ │ ├── moreFromMozilla.ftl │ │ ├── permissions.ftl │ │ ├── preferences.ftl │ │ ├── selectBookmark.ftl │ │ ├── siteDataSettings.ftl │ │ └── translation.ftl │ ├── profile │ │ └── default-bookmarks.ftl │ ├── protections.ftl │ ├── protectionsPanel.ftl │ ├── recentlyClosed.ftl │ ├── reportBrokenSite.ftl │ ├── safeMode.ftl │ ├── safebrowsing │ │ └── blockedSite.ftl │ ├── sanitize.ftl │ ├── screenshots.ftl │ ├── screenshotsOverlay.ftl │ ├── search.ftl │ ├── setDesktopBackground.ftl │ ├── shopping.ftl │ ├── sidebarMenu.ftl │ ├── sitePermissions.ftl │ ├── siteProtections.ftl │ ├── speechDispatcher.ftl │ ├── spotlight.ftl │ ├── sync.ftl │ ├── syncedTabs.ftl │ ├── tabContextMenu.ftl │ ├── tabbrowser.ftl │ ├── textRecognition.ftl │ ├── toolbarContextMenu.ftl │ ├── touchbar │ │ └── touchbar.ftl │ ├── translations.ftl │ ├── unifiedExtensions.ftl │ ├── webProtocolHandler.ftl │ ├── webauthnDialog.ftl │ └── webrtcIndicator.ftl ├── chrome │ ├── browser │ │ ├── browser.properties │ │ ├── customizableui │ │ │ └── customizableWidgets.properties │ │ ├── downloads │ │ │ └── downloads.properties │ │ ├── feeds │ │ │ └── subscribe.properties │ │ ├── places │ │ │ └── bookmarkProperties.properties │ │ ├── safebrowsing │ │ │ └── safebrowsing.properties │ │ ├── search.properties │ │ ├── shellservice.properties │ │ ├── siteData.properties │ │ ├── sitePermissions.properties │ │ ├── syncSetup.properties │ │ ├── taskbar.properties │ │ └── uiDensity.properties │ └── overrides │ │ └── appstrings.properties ├── crashreporter │ └── crashreporter-override.ini ├── defaultagent │ └── defaultagent_localized.ini ├── extensions │ ├── formautofill │ │ └── formautofill.properties │ └── report-site-issue │ │ └── webcompat.properties ├── firefox-l10n.js ├── installer │ ├── custom.properties │ ├── mui.properties │ ├── nsisstrings.properties │ └── override.properties ├── langpack-metadata.ftl ├── pdfviewer │ ├── chrome.properties │ └── viewer.properties └── updater │ └── updater.ini ├── devtools ├── client │ ├── aboutdebugging.ftl │ ├── accessibility.ftl │ ├── accessibility.properties │ ├── animationinspector.properties │ ├── application.ftl │ ├── boxmodel.properties │ ├── changes.properties │ ├── compatibility.ftl │ ├── components.properties │ ├── debugger.properties │ ├── device.properties │ ├── dom.properties │ ├── filterwidget.properties │ ├── font-inspector.properties │ ├── har.properties │ ├── inspector.properties │ ├── jsonview.properties │ ├── layout.properties │ ├── memory.properties │ ├── menus.properties │ ├── netmonitor.properties │ ├── network-throttling.properties │ ├── perftools.ftl │ ├── responsive.properties │ ├── shared.properties │ ├── sourceeditor.properties │ ├── startup.properties │ ├── storage.ftl │ ├── styleeditor.ftl │ ├── styleeditor.properties │ ├── toolbox-options.ftl │ ├── toolbox.ftl │ ├── toolbox.properties │ ├── tooltips.ftl │ └── webconsole.properties ├── shared │ ├── accessibility.properties │ ├── debugger-paused-reasons.ftl │ ├── debugger.properties │ ├── eyedropper.properties │ ├── highlighters.ftl │ ├── screenshot.properties │ ├── shared.properties │ ├── styleinspector.properties │ └── webconsole-commands.ftl └── startup │ └── key-shortcuts.ftl ├── dom ├── chrome │ ├── accessibility │ │ ├── AccessFu.properties │ │ ├── mac │ │ │ └── accessible.properties │ │ ├── unix │ │ │ └── accessible.properties │ │ └── win │ │ │ └── accessible.properties │ ├── appstrings.properties │ ├── dom │ │ └── dom.properties │ ├── global-strres.properties │ ├── layout │ │ ├── HtmlForm.properties │ │ ├── MediaDocument.properties │ │ ├── css.properties │ │ ├── htmlparser.properties │ │ ├── layout_errors.properties │ │ ├── printing.properties │ │ ├── xmlparser.properties │ │ └── xul.properties │ ├── mathml │ │ └── mathml.properties │ ├── nsWebBrowserPersist.properties │ ├── security │ │ ├── caps.properties │ │ ├── csp.properties │ │ └── security.properties │ ├── svg │ │ └── svg.properties │ └── xslt │ │ └── xslt.properties └── dom │ ├── XMLPrettyPrint.ftl │ └── media.ftl ├── extensions └── spellcheck │ └── hunspell │ ├── README_en_US.txt │ ├── README_mozilla.txt │ ├── en-US.aff │ └── en-US.dic ├── mobile ├── android │ ├── chrome │ │ ├── browser.properties │ │ └── passwordmgr.properties │ ├── mobile-l10n.js │ └── mobile │ │ └── android │ │ ├── aboutConfig.ftl │ │ └── geckoViewConsole.ftl └── chrome │ └── region.properties ├── netwerk └── necko.properties ├── security └── manager │ ├── chrome │ ├── pipnss │ │ ├── nsserrors.properties │ │ └── pipnss.properties │ └── pippki │ │ └── pippki.properties │ └── security │ ├── certificates │ ├── certManager.ftl │ └── deviceManager.ftl │ └── pippki │ └── pippki.ftl └── toolkit ├── chrome ├── alerts │ └── alert.properties ├── autoconfig │ └── autoconfig.properties ├── global-platform │ ├── mac │ │ ├── intl.properties │ │ └── platformKeys.properties │ ├── unix │ │ ├── intl.properties │ │ └── platformKeys.properties │ └── win │ │ ├── intl.properties │ │ └── platformKeys.properties ├── global │ ├── aboutStudies.properties │ ├── autocomplete.properties │ ├── browser.properties │ ├── commonDialogs.properties │ ├── contentAreaCommands.properties │ ├── dialog.properties │ ├── extensions.properties │ ├── fallbackMenubar.properties │ ├── filepicker.properties │ ├── intl.css │ ├── intl.properties │ ├── keys.properties │ ├── narrate.properties │ ├── printdialog.properties │ ├── resetProfile.properties │ ├── viewSource.properties │ └── wizard.properties ├── mozapps │ ├── downloads │ │ ├── downloads.properties │ │ └── unknownContentType.properties │ ├── profile │ │ └── profileSelection.properties │ └── update │ │ └── updates.properties ├── passwordmgr │ └── passwordmgr.properties └── places │ └── places.properties ├── crashreporter ├── aboutcrashes.ftl ├── crashreporter.ftl └── crashreporter.ini ├── services └── accounts.ftl └── toolkit ├── about ├── aboutAbout.ftl ├── aboutAddons.ftl ├── aboutCompat.ftl ├── aboutGlean.ftl ├── aboutHttpsOnlyError.ftl ├── aboutLogging.ftl ├── aboutMozilla.ftl ├── aboutNetworking.ftl ├── aboutPerformance.ftl ├── aboutPlugins.ftl ├── aboutProcesses.ftl ├── aboutProfiles.ftl ├── aboutReader.ftl ├── aboutRights.ftl ├── aboutServiceWorkers.ftl ├── aboutSupport.ftl ├── aboutTelemetry.ftl ├── aboutThirdParty.ftl ├── aboutWebauthn.ftl ├── aboutWebrtc.ftl ├── aboutWindowsMessages.ftl ├── abuseReports.ftl ├── certviewer.ftl ├── config.ftl └── url-classifier.ftl ├── branding ├── accounts.ftl └── brandings.ftl ├── contentanalysis └── contentanalysis.ftl ├── downloads ├── downloadUI.ftl └── downloadUtils.ftl ├── featuregates └── features.ftl ├── formautofill └── formAutofill.ftl ├── global ├── alert.ftl ├── appPicker.ftl ├── arrowscrollbox.ftl ├── browser-utils.ftl ├── commonDialog.ftl ├── contextual-identity.ftl ├── cookieBannerHandling.ftl ├── createProfileWizard.ftl ├── cspErrors.ftl ├── datepicker.ftl ├── datetimebox.ftl ├── extensionPermissions.ftl ├── extensions.ftl ├── handlerDialog.ftl ├── htmlForm.ftl ├── mozCard.ftl ├── mozFiveStar.ftl ├── mozMessageBar.ftl ├── mozSupportLink.ftl ├── notification.ftl ├── popupnotification.ftl ├── processTypes.ftl ├── profileDowngrade.ftl ├── profileSelection.ftl ├── resetProfile.ftl ├── resistFingerPrinting.ftl ├── run-from-dmg.ftl ├── tabprompts.ftl ├── textActions.ftl ├── timepicker.ftl ├── tree.ftl ├── unknownContentType.ftl ├── videocontrols.ftl └── wizard.ftl ├── intl ├── languageNames.ftl └── regionNames.ftl ├── main-window ├── autocomplete.ftl └── findbar.ftl ├── neterror ├── certError.ftl ├── netError.ftl └── nsserrors.ftl ├── passwordmgr └── passwordmgr.ftl ├── payments └── payments.ftl ├── pdfviewer └── viewer.ftl ├── pictureinpicture └── pictureinpicture.ftl ├── preferences └── preferences.ftl ├── printing ├── printDialogs.ftl ├── printPreview.ftl └── printUI.ftl ├── reportBrokenSite └── reportBrokenSite.ftl └── updates ├── backgroundupdate.ftl ├── elevation.ftl └── history.ftl /.gitignore: -------------------------------------------------------------------------------- 1 | **/.hg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/README.md -------------------------------------------------------------------------------- /ar/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/.hgtags -------------------------------------------------------------------------------- /ar/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /ar/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /ar/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/browser.ftl -------------------------------------------------------------------------------- /ar/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /ar/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /ar/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /ar/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /ar/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/migration.ftl -------------------------------------------------------------------------------- /ar/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /ar/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /ar/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/places.ftl -------------------------------------------------------------------------------- /ar/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /ar/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /ar/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/search.ftl -------------------------------------------------------------------------------- /ar/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /ar/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /ar/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/sync.ftl -------------------------------------------------------------------------------- /ar/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /ar/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /ar/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/firefox-l10n.js -------------------------------------------------------------------------------- /ar/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /ar/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/browser/updater/updater.ini -------------------------------------------------------------------------------- /ar/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/devtools/client/dom.properties -------------------------------------------------------------------------------- /ar/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/devtools/client/har.properties -------------------------------------------------------------------------------- /ar/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /ar/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/devtools/client/storage.ftl -------------------------------------------------------------------------------- /ar/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /ar/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /ar/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /ar/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /ar/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /ar/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/dom/dom/media.ftl -------------------------------------------------------------------------------- /ar/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /ar/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/netwerk/necko.properties -------------------------------------------------------------------------------- /ar/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /ar/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ar/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /assets/Floorp_Logo_f10n_Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/assets/Floorp_Logo_f10n_Dark.svg -------------------------------------------------------------------------------- /assets/Floorp_Logo_f10n_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/assets/Floorp_Logo_f10n_Light.svg -------------------------------------------------------------------------------- /assets/Link2MainRepo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/assets/Link2MainRepo.svg -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/crowdin.yml -------------------------------------------------------------------------------- /cs/.gitattributes: -------------------------------------------------------------------------------- 1 | *.dtd linguist-language=XML 2 | 3 | -------------------------------------------------------------------------------- /cs/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/.hgtags -------------------------------------------------------------------------------- /cs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/README.md -------------------------------------------------------------------------------- /cs/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /cs/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /cs/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/browser.ftl -------------------------------------------------------------------------------- /cs/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /cs/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /cs/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /cs/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /cs/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/migration.ftl -------------------------------------------------------------------------------- /cs/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /cs/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /cs/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/places.ftl -------------------------------------------------------------------------------- /cs/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /cs/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /cs/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/search.ftl -------------------------------------------------------------------------------- /cs/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /cs/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /cs/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/sync.ftl -------------------------------------------------------------------------------- /cs/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /cs/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /cs/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/firefox-l10n.js -------------------------------------------------------------------------------- /cs/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /cs/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/browser/updater/updater.ini -------------------------------------------------------------------------------- /cs/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/devtools/client/dom.properties -------------------------------------------------------------------------------- /cs/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/devtools/client/har.properties -------------------------------------------------------------------------------- /cs/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /cs/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/devtools/client/storage.ftl -------------------------------------------------------------------------------- /cs/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /cs/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /cs/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /cs/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /cs/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /cs/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/dom/dom/media.ftl -------------------------------------------------------------------------------- /cs/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /cs/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/netwerk/necko.properties -------------------------------------------------------------------------------- /cs/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /cs/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/cs/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /da/.hgtags: -------------------------------------------------------------------------------- 1 | 3085c34aa036f691c0a8e494ed10249b3dc91e7c GECKO_1_9_2_BASE 2 | -------------------------------------------------------------------------------- /da/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /da/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /da/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/browser.ftl -------------------------------------------------------------------------------- /da/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /da/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /da/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /da/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /da/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/migration.ftl -------------------------------------------------------------------------------- /da/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /da/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /da/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/places.ftl -------------------------------------------------------------------------------- /da/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /da/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /da/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/search.ftl -------------------------------------------------------------------------------- /da/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /da/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /da/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/sync.ftl -------------------------------------------------------------------------------- /da/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /da/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /da/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/firefox-l10n.js -------------------------------------------------------------------------------- /da/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /da/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/browser/updater/updater.ini -------------------------------------------------------------------------------- /da/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/devtools/client/dom.properties -------------------------------------------------------------------------------- /da/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/devtools/client/har.properties -------------------------------------------------------------------------------- /da/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /da/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/devtools/client/storage.ftl -------------------------------------------------------------------------------- /da/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /da/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /da/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /da/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /da/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /da/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/dom/dom/media.ftl -------------------------------------------------------------------------------- /da/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /da/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/netwerk/necko.properties -------------------------------------------------------------------------------- /da/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /da/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/da/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /de/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/.hgtags -------------------------------------------------------------------------------- /de/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /de/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /de/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/browser.ftl -------------------------------------------------------------------------------- /de/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /de/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /de/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /de/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /de/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/migration.ftl -------------------------------------------------------------------------------- /de/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /de/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /de/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/places.ftl -------------------------------------------------------------------------------- /de/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /de/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /de/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/search.ftl -------------------------------------------------------------------------------- /de/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /de/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /de/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/sync.ftl -------------------------------------------------------------------------------- /de/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /de/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /de/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/firefox-l10n.js -------------------------------------------------------------------------------- /de/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /de/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/browser/updater/updater.ini -------------------------------------------------------------------------------- /de/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/devtools/client/dom.properties -------------------------------------------------------------------------------- /de/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/devtools/client/har.properties -------------------------------------------------------------------------------- /de/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /de/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/devtools/client/storage.ftl -------------------------------------------------------------------------------- /de/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /de/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /de/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /de/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /de/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /de/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/dom/dom/media.ftl -------------------------------------------------------------------------------- /de/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/netwerk/necko.properties -------------------------------------------------------------------------------- /de/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /de/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/de/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /el/.hgtags: -------------------------------------------------------------------------------- 1 | 1db5e690772a3000da2c5441c5107146d49b31d4 GECKO_1_9_2_BASE 2 | -------------------------------------------------------------------------------- /el/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /el/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /el/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/browser.ftl -------------------------------------------------------------------------------- /el/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /el/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /el/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /el/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /el/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/migration.ftl -------------------------------------------------------------------------------- /el/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /el/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /el/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/places.ftl -------------------------------------------------------------------------------- /el/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /el/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /el/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/search.ftl -------------------------------------------------------------------------------- /el/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /el/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /el/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/sync.ftl -------------------------------------------------------------------------------- /el/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /el/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /el/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/firefox-l10n.js -------------------------------------------------------------------------------- /el/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /el/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/browser/updater/updater.ini -------------------------------------------------------------------------------- /el/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/devtools/client/dom.properties -------------------------------------------------------------------------------- /el/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/devtools/client/har.properties -------------------------------------------------------------------------------- /el/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /el/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/devtools/client/storage.ftl -------------------------------------------------------------------------------- /el/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /el/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /el/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /el/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /el/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /el/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/dom/dom/media.ftl -------------------------------------------------------------------------------- /el/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /el/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/netwerk/necko.properties -------------------------------------------------------------------------------- /el/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /el/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/el/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /en-GB/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/.hgtags -------------------------------------------------------------------------------- /en-GB/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /en-GB/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/browser.ftl -------------------------------------------------------------------------------- /en-GB/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /en-GB/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /en-GB/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /en-GB/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/places.ftl -------------------------------------------------------------------------------- /en-GB/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/search.ftl -------------------------------------------------------------------------------- /en-GB/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/browser/sync.ftl -------------------------------------------------------------------------------- /en-GB/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/firefox-l10n.js -------------------------------------------------------------------------------- /en-GB/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/browser/updater/updater.ini -------------------------------------------------------------------------------- /en-GB/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/devtools/client/storage.ftl -------------------------------------------------------------------------------- /en-GB/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /en-GB/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /en-GB/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/dom/dom/media.ftl -------------------------------------------------------------------------------- /en-GB/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-GB/netwerk/necko.properties -------------------------------------------------------------------------------- /en-US/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/en-US/floorp.ftl -------------------------------------------------------------------------------- /es-ES/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/.hgtags -------------------------------------------------------------------------------- /es-ES/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /es-ES/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/browser.ftl -------------------------------------------------------------------------------- /es-ES/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /es-ES/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /es-ES/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /es-ES/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/places.ftl -------------------------------------------------------------------------------- /es-ES/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/search.ftl -------------------------------------------------------------------------------- /es-ES/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/browser/sync.ftl -------------------------------------------------------------------------------- /es-ES/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/firefox-l10n.js -------------------------------------------------------------------------------- /es-ES/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/browser/updater/updater.ini -------------------------------------------------------------------------------- /es-ES/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/devtools/client/storage.ftl -------------------------------------------------------------------------------- /es-ES/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /es-ES/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /es-ES/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/dom/dom/media.ftl -------------------------------------------------------------------------------- /es-ES/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/es-ES/netwerk/necko.properties -------------------------------------------------------------------------------- /fr/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/.hgtags -------------------------------------------------------------------------------- /fr/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /fr/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /fr/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/browser.ftl -------------------------------------------------------------------------------- /fr/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /fr/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /fr/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /fr/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /fr/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/migration.ftl -------------------------------------------------------------------------------- /fr/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /fr/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /fr/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/places.ftl -------------------------------------------------------------------------------- /fr/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /fr/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /fr/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/search.ftl -------------------------------------------------------------------------------- /fr/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /fr/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /fr/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/sync.ftl -------------------------------------------------------------------------------- /fr/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /fr/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /fr/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/firefox-l10n.js -------------------------------------------------------------------------------- /fr/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /fr/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/browser/updater/updater.ini -------------------------------------------------------------------------------- /fr/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/devtools/client/dom.properties -------------------------------------------------------------------------------- /fr/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/devtools/client/har.properties -------------------------------------------------------------------------------- /fr/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /fr/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/devtools/client/storage.ftl -------------------------------------------------------------------------------- /fr/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /fr/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /fr/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /fr/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /fr/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /fr/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/dom/dom/media.ftl -------------------------------------------------------------------------------- /fr/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/netwerk/necko.properties -------------------------------------------------------------------------------- /fr/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /fr/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/fr/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /hu/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/.hgtags -------------------------------------------------------------------------------- /hu/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /hu/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /hu/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/browser.ftl -------------------------------------------------------------------------------- /hu/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /hu/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /hu/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /hu/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /hu/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/migration.ftl -------------------------------------------------------------------------------- /hu/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /hu/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /hu/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/places.ftl -------------------------------------------------------------------------------- /hu/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /hu/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /hu/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/search.ftl -------------------------------------------------------------------------------- /hu/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /hu/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /hu/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/sync.ftl -------------------------------------------------------------------------------- /hu/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /hu/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /hu/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/firefox-l10n.js -------------------------------------------------------------------------------- /hu/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /hu/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/browser/updater/updater.ini -------------------------------------------------------------------------------- /hu/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/devtools/client/dom.properties -------------------------------------------------------------------------------- /hu/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/devtools/client/har.properties -------------------------------------------------------------------------------- /hu/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /hu/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/devtools/client/storage.ftl -------------------------------------------------------------------------------- /hu/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /hu/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /hu/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /hu/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /hu/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /hu/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/dom/dom/media.ftl -------------------------------------------------------------------------------- /hu/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /hu/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/netwerk/necko.properties -------------------------------------------------------------------------------- /hu/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /hu/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/hu/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /id/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/.hgtags -------------------------------------------------------------------------------- /id/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /id/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /id/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/browser.ftl -------------------------------------------------------------------------------- /id/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /id/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /id/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /id/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /id/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/migration.ftl -------------------------------------------------------------------------------- /id/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /id/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /id/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/places.ftl -------------------------------------------------------------------------------- /id/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /id/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /id/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/search.ftl -------------------------------------------------------------------------------- /id/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /id/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /id/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/sync.ftl -------------------------------------------------------------------------------- /id/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /id/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /id/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/firefox-l10n.js -------------------------------------------------------------------------------- /id/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /id/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/browser/updater/updater.ini -------------------------------------------------------------------------------- /id/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/devtools/client/dom.properties -------------------------------------------------------------------------------- /id/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/devtools/client/har.properties -------------------------------------------------------------------------------- /id/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /id/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/devtools/client/storage.ftl -------------------------------------------------------------------------------- /id/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /id/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /id/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /id/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /id/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /id/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/dom/dom/media.ftl -------------------------------------------------------------------------------- /id/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /id/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/netwerk/necko.properties -------------------------------------------------------------------------------- /id/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /id/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/id/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /it/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/.hgtags -------------------------------------------------------------------------------- /it/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /it/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /it/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/browser.ftl -------------------------------------------------------------------------------- /it/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /it/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /it/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /it/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /it/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/migration.ftl -------------------------------------------------------------------------------- /it/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /it/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /it/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/places.ftl -------------------------------------------------------------------------------- /it/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /it/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /it/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/search.ftl -------------------------------------------------------------------------------- /it/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /it/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /it/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/sync.ftl -------------------------------------------------------------------------------- /it/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /it/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /it/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/firefox-l10n.js -------------------------------------------------------------------------------- /it/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /it/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/browser/updater/updater.ini -------------------------------------------------------------------------------- /it/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/devtools/client/dom.properties -------------------------------------------------------------------------------- /it/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/devtools/client/har.properties -------------------------------------------------------------------------------- /it/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /it/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/devtools/client/storage.ftl -------------------------------------------------------------------------------- /it/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /it/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /it/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /it/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /it/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /it/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/dom/dom/media.ftl -------------------------------------------------------------------------------- /it/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/netwerk/necko.properties -------------------------------------------------------------------------------- /it/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /it/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/it/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /ja-JP-mac/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja-JP-mac/.hgtags -------------------------------------------------------------------------------- /ja-JP-mac/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja-JP-mac/browser/firefox-l10n.js -------------------------------------------------------------------------------- /ja-JP-mac/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja-JP-mac/dom/dom/media.ftl -------------------------------------------------------------------------------- /ja/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/.hgtags -------------------------------------------------------------------------------- /ja/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /ja/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /ja/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/browser.ftl -------------------------------------------------------------------------------- /ja/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /ja/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /ja/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /ja/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /ja/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/migration.ftl -------------------------------------------------------------------------------- /ja/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /ja/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /ja/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/places.ftl -------------------------------------------------------------------------------- /ja/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /ja/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /ja/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/search.ftl -------------------------------------------------------------------------------- /ja/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /ja/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /ja/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/sync.ftl -------------------------------------------------------------------------------- /ja/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /ja/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /ja/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/firefox-l10n.js -------------------------------------------------------------------------------- /ja/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /ja/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/browser/updater/updater.ini -------------------------------------------------------------------------------- /ja/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/devtools/client/dom.properties -------------------------------------------------------------------------------- /ja/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/devtools/client/har.properties -------------------------------------------------------------------------------- /ja/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /ja/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/devtools/client/storage.ftl -------------------------------------------------------------------------------- /ja/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /ja/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /ja/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /ja/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /ja/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /ja/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/dom/dom/media.ftl -------------------------------------------------------------------------------- /ja/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /ja/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/netwerk/necko.properties -------------------------------------------------------------------------------- /ja/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /ja/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ja/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /ko/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/.hgtags -------------------------------------------------------------------------------- /ko/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /ko/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /ko/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/browser.ftl -------------------------------------------------------------------------------- /ko/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /ko/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /ko/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /ko/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /ko/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/migration.ftl -------------------------------------------------------------------------------- /ko/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /ko/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /ko/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/places.ftl -------------------------------------------------------------------------------- /ko/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /ko/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /ko/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/search.ftl -------------------------------------------------------------------------------- /ko/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /ko/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /ko/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/sync.ftl -------------------------------------------------------------------------------- /ko/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /ko/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /ko/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/firefox-l10n.js -------------------------------------------------------------------------------- /ko/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /ko/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/browser/updater/updater.ini -------------------------------------------------------------------------------- /ko/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/devtools/client/dom.properties -------------------------------------------------------------------------------- /ko/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/devtools/client/har.properties -------------------------------------------------------------------------------- /ko/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /ko/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/devtools/client/storage.ftl -------------------------------------------------------------------------------- /ko/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /ko/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /ko/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /ko/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /ko/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /ko/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/dom/dom/media.ftl -------------------------------------------------------------------------------- /ko/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /ko/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/netwerk/necko.properties -------------------------------------------------------------------------------- /ko/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /ko/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ko/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /lt/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/.hgtags -------------------------------------------------------------------------------- /lt/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /lt/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /lt/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/browser.ftl -------------------------------------------------------------------------------- /lt/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /lt/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /lt/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /lt/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /lt/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/migration.ftl -------------------------------------------------------------------------------- /lt/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /lt/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /lt/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/places.ftl -------------------------------------------------------------------------------- /lt/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /lt/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /lt/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/search.ftl -------------------------------------------------------------------------------- /lt/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /lt/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /lt/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/sync.ftl -------------------------------------------------------------------------------- /lt/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /lt/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /lt/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/firefox-l10n.js -------------------------------------------------------------------------------- /lt/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /lt/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/browser/updater/updater.ini -------------------------------------------------------------------------------- /lt/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/devtools/client/dom.properties -------------------------------------------------------------------------------- /lt/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/devtools/client/har.properties -------------------------------------------------------------------------------- /lt/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /lt/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/devtools/client/storage.ftl -------------------------------------------------------------------------------- /lt/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /lt/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /lt/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /lt/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /lt/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /lt/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/dom/dom/media.ftl -------------------------------------------------------------------------------- /lt/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /lt/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/netwerk/necko.properties -------------------------------------------------------------------------------- /lt/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /lt/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/lt/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /nl/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/.hgtags -------------------------------------------------------------------------------- /nl/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /nl/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /nl/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/browser.ftl -------------------------------------------------------------------------------- /nl/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /nl/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /nl/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /nl/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /nl/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/migration.ftl -------------------------------------------------------------------------------- /nl/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /nl/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /nl/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/places.ftl -------------------------------------------------------------------------------- /nl/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /nl/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /nl/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/search.ftl -------------------------------------------------------------------------------- /nl/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /nl/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /nl/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/sync.ftl -------------------------------------------------------------------------------- /nl/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /nl/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /nl/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/firefox-l10n.js -------------------------------------------------------------------------------- /nl/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /nl/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/browser/updater/updater.ini -------------------------------------------------------------------------------- /nl/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/devtools/client/dom.properties -------------------------------------------------------------------------------- /nl/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/devtools/client/har.properties -------------------------------------------------------------------------------- /nl/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /nl/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/devtools/client/storage.ftl -------------------------------------------------------------------------------- /nl/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /nl/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /nl/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /nl/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /nl/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /nl/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/dom/dom/media.ftl -------------------------------------------------------------------------------- /nl/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/netwerk/necko.properties -------------------------------------------------------------------------------- /nl/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /nl/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nl/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /nn-NO/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/.hgtags -------------------------------------------------------------------------------- /nn-NO/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /nn-NO/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/browser.ftl -------------------------------------------------------------------------------- /nn-NO/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /nn-NO/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /nn-NO/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /nn-NO/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/places.ftl -------------------------------------------------------------------------------- /nn-NO/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/search.ftl -------------------------------------------------------------------------------- /nn-NO/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/browser/sync.ftl -------------------------------------------------------------------------------- /nn-NO/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/firefox-l10n.js -------------------------------------------------------------------------------- /nn-NO/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/browser/updater/updater.ini -------------------------------------------------------------------------------- /nn-NO/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/devtools/client/storage.ftl -------------------------------------------------------------------------------- /nn-NO/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /nn-NO/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /nn-NO/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/dom/dom/media.ftl -------------------------------------------------------------------------------- /nn-NO/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/nn-NO/netwerk/necko.properties -------------------------------------------------------------------------------- /pl/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/.hgtags -------------------------------------------------------------------------------- /pl/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /pl/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /pl/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/browser.ftl -------------------------------------------------------------------------------- /pl/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /pl/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /pl/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /pl/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /pl/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/migration.ftl -------------------------------------------------------------------------------- /pl/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /pl/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /pl/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/places.ftl -------------------------------------------------------------------------------- /pl/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /pl/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /pl/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/search.ftl -------------------------------------------------------------------------------- /pl/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /pl/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /pl/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/sync.ftl -------------------------------------------------------------------------------- /pl/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /pl/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /pl/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/firefox-l10n.js -------------------------------------------------------------------------------- /pl/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /pl/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/browser/updater/updater.ini -------------------------------------------------------------------------------- /pl/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/devtools/client/dom.properties -------------------------------------------------------------------------------- /pl/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/devtools/client/har.properties -------------------------------------------------------------------------------- /pl/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /pl/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/devtools/client/storage.ftl -------------------------------------------------------------------------------- /pl/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /pl/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /pl/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /pl/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /pl/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /pl/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/dom/dom/media.ftl -------------------------------------------------------------------------------- /pl/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /pl/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/netwerk/necko.properties -------------------------------------------------------------------------------- /pl/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /pl/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pl/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /pt-BR/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/.hgtags -------------------------------------------------------------------------------- /pt-BR/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /pt-BR/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/browser.ftl -------------------------------------------------------------------------------- /pt-BR/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /pt-BR/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /pt-BR/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /pt-BR/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/places.ftl -------------------------------------------------------------------------------- /pt-BR/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/search.ftl -------------------------------------------------------------------------------- /pt-BR/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/browser/sync.ftl -------------------------------------------------------------------------------- /pt-BR/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/firefox-l10n.js -------------------------------------------------------------------------------- /pt-BR/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/browser/updater/updater.ini -------------------------------------------------------------------------------- /pt-BR/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/devtools/client/storage.ftl -------------------------------------------------------------------------------- /pt-BR/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /pt-BR/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /pt-BR/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/dom/dom/media.ftl -------------------------------------------------------------------------------- /pt-BR/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-BR/netwerk/necko.properties -------------------------------------------------------------------------------- /pt-PT/.hgignore: -------------------------------------------------------------------------------- 1 | .*~ 2 | -------------------------------------------------------------------------------- /pt-PT/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/.hgtags -------------------------------------------------------------------------------- /pt-PT/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /pt-PT/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/browser.ftl -------------------------------------------------------------------------------- /pt-PT/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /pt-PT/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /pt-PT/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /pt-PT/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/places.ftl -------------------------------------------------------------------------------- /pt-PT/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/search.ftl -------------------------------------------------------------------------------- /pt-PT/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/browser/sync.ftl -------------------------------------------------------------------------------- /pt-PT/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/firefox-l10n.js -------------------------------------------------------------------------------- /pt-PT/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/browser/updater/updater.ini -------------------------------------------------------------------------------- /pt-PT/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/devtools/client/storage.ftl -------------------------------------------------------------------------------- /pt-PT/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /pt-PT/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /pt-PT/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/dom/dom/media.ftl -------------------------------------------------------------------------------- /pt-PT/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/pt-PT/netwerk/necko.properties -------------------------------------------------------------------------------- /ru/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/.hgtags -------------------------------------------------------------------------------- /ru/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /ru/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /ru/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/browser.ftl -------------------------------------------------------------------------------- /ru/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /ru/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /ru/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /ru/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /ru/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/migration.ftl -------------------------------------------------------------------------------- /ru/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /ru/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /ru/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/places.ftl -------------------------------------------------------------------------------- /ru/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /ru/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /ru/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/search.ftl -------------------------------------------------------------------------------- /ru/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /ru/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /ru/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/sync.ftl -------------------------------------------------------------------------------- /ru/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /ru/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /ru/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/firefox-l10n.js -------------------------------------------------------------------------------- /ru/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /ru/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/browser/updater/updater.ini -------------------------------------------------------------------------------- /ru/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/devtools/client/dom.properties -------------------------------------------------------------------------------- /ru/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/devtools/client/har.properties -------------------------------------------------------------------------------- /ru/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /ru/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/devtools/client/storage.ftl -------------------------------------------------------------------------------- /ru/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /ru/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /ru/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /ru/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /ru/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /ru/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/dom/dom/media.ftl -------------------------------------------------------------------------------- /ru/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /ru/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/netwerk/necko.properties -------------------------------------------------------------------------------- /ru/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /ru/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/ru/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /supported-languages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/supported-languages -------------------------------------------------------------------------------- /sv-SE/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/.hgtags -------------------------------------------------------------------------------- /sv-SE/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /sv-SE/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/browser.ftl -------------------------------------------------------------------------------- /sv-SE/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /sv-SE/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /sv-SE/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /sv-SE/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/places.ftl -------------------------------------------------------------------------------- /sv-SE/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/search.ftl -------------------------------------------------------------------------------- /sv-SE/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/browser/sync.ftl -------------------------------------------------------------------------------- /sv-SE/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/firefox-l10n.js -------------------------------------------------------------------------------- /sv-SE/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/browser/updater/updater.ini -------------------------------------------------------------------------------- /sv-SE/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/devtools/client/storage.ftl -------------------------------------------------------------------------------- /sv-SE/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /sv-SE/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /sv-SE/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/dom/dom/media.ftl -------------------------------------------------------------------------------- /sv-SE/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/sv-SE/netwerk/necko.properties -------------------------------------------------------------------------------- /th/.hgtags: -------------------------------------------------------------------------------- 1 | 458ff57dc9508a9e451f742023af12f9715c7133 GECKO_1_9_2_BASE 2 | -------------------------------------------------------------------------------- /th/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /th/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /th/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/browser.ftl -------------------------------------------------------------------------------- /th/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /th/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /th/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /th/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /th/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/migration.ftl -------------------------------------------------------------------------------- /th/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /th/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /th/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/places.ftl -------------------------------------------------------------------------------- /th/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /th/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /th/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/search.ftl -------------------------------------------------------------------------------- /th/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /th/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /th/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/sync.ftl -------------------------------------------------------------------------------- /th/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /th/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /th/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/firefox-l10n.js -------------------------------------------------------------------------------- /th/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /th/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/browser/updater/updater.ini -------------------------------------------------------------------------------- /th/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/devtools/client/dom.properties -------------------------------------------------------------------------------- /th/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/devtools/client/har.properties -------------------------------------------------------------------------------- /th/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /th/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/devtools/client/storage.ftl -------------------------------------------------------------------------------- /th/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /th/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /th/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /th/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /th/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /th/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/dom/dom/media.ftl -------------------------------------------------------------------------------- /th/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/netwerk/necko.properties -------------------------------------------------------------------------------- /th/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /th/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/th/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /tr/.hgtags: -------------------------------------------------------------------------------- 1 | ccb46a6c0e1ffb19696ff0c713e1667366833b6e GECKO_1_9_2_BASE 2 | -------------------------------------------------------------------------------- /tr/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /tr/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /tr/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/browser.ftl -------------------------------------------------------------------------------- /tr/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /tr/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /tr/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /tr/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /tr/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/migration.ftl -------------------------------------------------------------------------------- /tr/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /tr/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /tr/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/places.ftl -------------------------------------------------------------------------------- /tr/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /tr/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /tr/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/search.ftl -------------------------------------------------------------------------------- /tr/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /tr/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /tr/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/sync.ftl -------------------------------------------------------------------------------- /tr/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /tr/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /tr/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/firefox-l10n.js -------------------------------------------------------------------------------- /tr/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /tr/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/browser/updater/updater.ini -------------------------------------------------------------------------------- /tr/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/devtools/client/dom.properties -------------------------------------------------------------------------------- /tr/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/devtools/client/har.properties -------------------------------------------------------------------------------- /tr/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /tr/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/devtools/client/storage.ftl -------------------------------------------------------------------------------- /tr/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /tr/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /tr/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /tr/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /tr/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /tr/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/dom/dom/media.ftl -------------------------------------------------------------------------------- /tr/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /tr/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/netwerk/necko.properties -------------------------------------------------------------------------------- /tr/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /tr/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/tr/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /uk/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/.hgignore -------------------------------------------------------------------------------- /uk/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/.hgtags -------------------------------------------------------------------------------- /uk/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/BUGS -------------------------------------------------------------------------------- /uk/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/TODO -------------------------------------------------------------------------------- /uk/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /uk/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /uk/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/browser.ftl -------------------------------------------------------------------------------- /uk/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /uk/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /uk/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /uk/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /uk/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/migration.ftl -------------------------------------------------------------------------------- /uk/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /uk/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /uk/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/places.ftl -------------------------------------------------------------------------------- /uk/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /uk/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /uk/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/search.ftl -------------------------------------------------------------------------------- /uk/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /uk/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /uk/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/sync.ftl -------------------------------------------------------------------------------- /uk/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /uk/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /uk/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/firefox-l10n.js -------------------------------------------------------------------------------- /uk/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /uk/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/browser/updater/updater.ini -------------------------------------------------------------------------------- /uk/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/devtools/client/dom.properties -------------------------------------------------------------------------------- /uk/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/devtools/client/har.properties -------------------------------------------------------------------------------- /uk/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /uk/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/devtools/client/storage.ftl -------------------------------------------------------------------------------- /uk/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /uk/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /uk/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /uk/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /uk/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /uk/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/dom/dom/media.ftl -------------------------------------------------------------------------------- /uk/mobile/android/mobile-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/mobile/android/mobile-l10n.js -------------------------------------------------------------------------------- /uk/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/netwerk/necko.properties -------------------------------------------------------------------------------- /uk/toolkit/chrome/global/intl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/toolkit/chrome/global/intl.css -------------------------------------------------------------------------------- /uk/toolkit/services/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/uk/toolkit/services/accounts.ftl -------------------------------------------------------------------------------- /update-langpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/update-langpack.sh -------------------------------------------------------------------------------- /vi/.hgtags: -------------------------------------------------------------------------------- 1 | 0432d67b35c0cffd6bffc81c4e3cd96a3f6a4f79 GECKO_1_9_2_BASE 2 | -------------------------------------------------------------------------------- /vi/browser/browser/accounts.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/accounts.ftl -------------------------------------------------------------------------------- /vi/browser/browser/appmenu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/appmenu.ftl -------------------------------------------------------------------------------- /vi/browser/browser/browser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/browser.ftl -------------------------------------------------------------------------------- /vi/browser/browser/colorways.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/colorways.ftl -------------------------------------------------------------------------------- /vi/browser/browser/downloads.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/downloads.ftl -------------------------------------------------------------------------------- /vi/browser/browser/floorp.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/floorp.ftl -------------------------------------------------------------------------------- /vi/browser/browser/menubar.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/menubar.ftl -------------------------------------------------------------------------------- /vi/browser/browser/migration.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/migration.ftl -------------------------------------------------------------------------------- /vi/browser/browser/pageInfo.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/pageInfo.ftl -------------------------------------------------------------------------------- /vi/browser/browser/panelUI.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/panelUI.ftl -------------------------------------------------------------------------------- /vi/browser/browser/places.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/places.ftl -------------------------------------------------------------------------------- /vi/browser/browser/safeMode.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/safeMode.ftl -------------------------------------------------------------------------------- /vi/browser/browser/sanitize.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/sanitize.ftl -------------------------------------------------------------------------------- /vi/browser/browser/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/search.ftl -------------------------------------------------------------------------------- /vi/browser/browser/shopping.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/shopping.ftl -------------------------------------------------------------------------------- /vi/browser/browser/spotlight.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/spotlight.ftl -------------------------------------------------------------------------------- /vi/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/sync.ftl -------------------------------------------------------------------------------- /vi/browser/browser/syncedTabs.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/syncedTabs.ftl -------------------------------------------------------------------------------- /vi/browser/browser/tabbrowser.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/browser/tabbrowser.ftl -------------------------------------------------------------------------------- /vi/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/firefox-l10n.js -------------------------------------------------------------------------------- /vi/browser/langpack-metadata.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/langpack-metadata.ftl -------------------------------------------------------------------------------- /vi/browser/updater/updater.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/browser/updater/updater.ini -------------------------------------------------------------------------------- /vi/devtools/client/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/devtools/client/dom.properties -------------------------------------------------------------------------------- /vi/devtools/client/har.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/devtools/client/har.properties -------------------------------------------------------------------------------- /vi/devtools/client/perftools.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/devtools/client/perftools.ftl -------------------------------------------------------------------------------- /vi/devtools/client/storage.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/devtools/client/storage.ftl -------------------------------------------------------------------------------- /vi/devtools/client/toolbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/devtools/client/toolbox.ftl -------------------------------------------------------------------------------- /vi/devtools/client/tooltips.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/devtools/client/tooltips.ftl -------------------------------------------------------------------------------- /vi/dom/chrome/dom/dom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/dom/chrome/dom/dom.properties -------------------------------------------------------------------------------- /vi/dom/chrome/svg/svg.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/dom/chrome/svg/svg.properties -------------------------------------------------------------------------------- /vi/dom/dom/XMLPrettyPrint.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/dom/dom/XMLPrettyPrint.ftl -------------------------------------------------------------------------------- /vi/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/dom/dom/media.ftl -------------------------------------------------------------------------------- /vi/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/vi/netwerk/necko.properties -------------------------------------------------------------------------------- /zh-CN/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-CN/.hgtags -------------------------------------------------------------------------------- /zh-CN/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-CN/browser/browser/sync.ftl -------------------------------------------------------------------------------- /zh-CN/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-CN/browser/firefox-l10n.js -------------------------------------------------------------------------------- /zh-CN/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-CN/dom/dom/media.ftl -------------------------------------------------------------------------------- /zh-CN/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-CN/netwerk/necko.properties -------------------------------------------------------------------------------- /zh-TW/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-TW/.hgtags -------------------------------------------------------------------------------- /zh-TW/browser/browser/sync.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-TW/browser/browser/sync.ftl -------------------------------------------------------------------------------- /zh-TW/browser/firefox-l10n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-TW/browser/firefox-l10n.js -------------------------------------------------------------------------------- /zh-TW/dom/dom/media.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-TW/dom/dom/media.ftl -------------------------------------------------------------------------------- /zh-TW/netwerk/necko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Floorp-Projects/Unified-l10n-central/HEAD/zh-TW/netwerk/necko.properties --------------------------------------------------------------------------------