├── .github ├── CODEOWNERS ├── linter_config.yml ├── requirements.txt ├── scripts │ └── clean_mozorg.py └── workflows │ ├── notify_bedrock_of_updates.yaml │ └── reference_linter.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── ach ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── picture-in-picture.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ └── page4.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ └── index.ftl ├── send_to_device.ftl └── ui.ftl ├── af ├── 404.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── products.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── send_to_device.ftl └── ui.ftl ├── am ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── fingerprinting.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ └── history.ftl │ ├── contribute.ftl │ └── home.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── an ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── ar ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ast ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── fingerprinting.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ └── page8.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── landing.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── az ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── azz ├── 404.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── products.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── send_to_device.ftl └── ui.ftl ├── be ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── fingerprinting.ftl │ │ ├── picture-in-picture.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ └── ip-address.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ └── mobile_v2.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── bg ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ └── quantum.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ └── adblocker.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ └── landing.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page14.ftl │ │ └── page6.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── bn ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── br ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── landing.ftl │ │ ├── platform-post-download.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── bs ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ca ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── compare │ │ │ └── shared.ftl │ │ └── mobile │ │ │ └── get-ios.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── fingerprinting.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── cak ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ └── focus.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── fingerprinting.ftl │ │ ├── picture-in-picture.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ └── landing.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── configs ├── pontoon.toml ├── special-templates.toml └── vendor.toml ├── crh ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ └── about │ │ └── shared.ftl ├── navigation.ftl ├── newsletter_form.ftl └── ui.ftl ├── cs ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── cy ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── da ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── index.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fingerprinting.ftl │ │ └── shared.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ └── page7.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ └── ip-address.ftl │ │ ├── pricing-2023.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── de ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── dsb ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── el ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── en-CA ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── en-GB ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── en-US ├── firefox │ ├── features │ │ ├── bookmarks.ftl │ │ └── shared.ftl │ ├── installer-help.ftl │ └── whatsnew │ │ ├── whatsnew-fx80.ftl │ │ └── whatsnew-fx81.ftl └── mozorg │ ├── home-m24.ftl │ └── home-mr1-promo.ftl ├── en ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── eo ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── chromebook.ftl │ │ └── compare │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── es-AR ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── es-CL ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── es-ES ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── es-MX ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ └── mobile_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── et ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── compare │ │ │ └── shared.ftl │ │ └── mobile │ │ │ └── focus.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── legal.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ └── landing.ftl ├── send_to_device.ftl └── ui.ftl ├── eu ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ ├── welcome │ │ └── page4.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── fa ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── chrome.ftl │ │ │ └── shared.ftl │ │ └── history │ │ │ └── what-is-a-browser.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── ff ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ └── page7.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── send_to_device.ftl └── ui.ftl ├── fi ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── fr ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── fy-NL ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ga-IE ├── 404.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── gd ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ └── products.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── gl ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── fingerprinting.ftl │ │ └── shared.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── gn ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── gu-IN ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ └── compare │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── he ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── mobile │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── hi-IN ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── hr ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── hsb ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── hu ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── hy-AM ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ ├── brave.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page6.ftl │ │ └── page7.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── ia ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── id ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── is ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ └── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ └── thanks.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── faq-v2.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── it ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ja ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ka ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── kab ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── kk ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ └── compare │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── products │ └── vpn │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl └── ui.ftl ├── km ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── kn ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── ko ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── l10n-pontoon.toml ├── l10n-vendor.toml ├── lij ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── lo ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── data-preferences.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── lt ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ ├── chrome.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── set-as-default │ │ └── landing.ftl │ ├── switch.ftl │ ├── welcome │ │ └── page4.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── ltg ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl └── ui.ftl ├── lv ├── 404.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── mk ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl └── ui.ftl ├── ml ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ └── shared.ftl │ │ ├── history │ │ │ └── browser-history.ftl │ │ └── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── fingerprinting.ftl │ │ ├── password-manager-2023.ftl │ │ └── sync-2023.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ ├── welcome │ │ └── page4.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── mr ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ ├── welcome │ │ └── page4.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── ms ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── my ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── nb-NO ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ne-NP ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── nl ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page11.ftl │ │ ├── page13.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── nn-NO ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── oc ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── compare │ │ │ └── shared.ftl │ │ ├── history │ │ │ └── browser-history.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ └── quantum.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── features │ │ └── fingerprinting.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── welcome │ │ └── page4.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ └── landing.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── pa-IN ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platforms │ │ └── ipad.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── pl ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── pt-BR ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── pt-PT ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── rm ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ro ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ru ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ ├── mission.ftl │ └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter │ └── opt-out-confirmation.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── scn ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ └── fast-2023.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── mozorg │ ├── about-m24.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ └── home.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl └── products │ └── vpn │ ├── download.ftl │ ├── features.ftl │ ├── landing-2023.ftl │ ├── pricing-2023.ftl │ └── shared.ftl ├── sco ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── fingerprinting.ftl │ │ ├── picture-in-picture.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ └── index.ftl ├── products │ └── vpn │ │ ├── landing.ftl │ │ ├── more │ │ └── what-is-a-vpn.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── si ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ ├── fingerprinting.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ └── android_v2.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── sk ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── skr ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── sl ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ └── what-is-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ └── desktop_v2.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── son ├── 404.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl └── ui.ftl ├── sq ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── sr ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── data-preferences.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── sv-SE ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page10.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ta ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ ├── switch.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── te ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── shared.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home-m24.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── tg ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── th ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── tl ├── 404.ftl ├── 500.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── compare │ │ │ ├── index.ftl │ │ │ └── shared.ftl │ │ └── mobile │ │ │ └── get-ios.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ └── shared.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ └── switch.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ └── principles.ftl ├── products │ └── vpn │ │ └── landing.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── tr ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── trs ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ └── consent-banner.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── facebook_container.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ └── products.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── sub_navigation.ftl └── ui.ftl ├── uk ├── 404.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── ur ├── 404.ftl ├── 500.ftl ├── banners │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker.ftl │ │ ├── fingerprinting.ftl │ │ ├── shared.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── contribute.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── faq.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── landing.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── uz ├── 404.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── features │ │ └── adblocker.ftl │ ├── mobile.ftl │ ├── new │ │ ├── desktop.ftl │ │ └── platform.ftl │ ├── products.ftl │ └── whatsnew │ │ └── whatsnew-s2d.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── vi ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl ├── wo ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl └── ui.ftl ├── xh ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ └── products.ftl ├── footer.ftl ├── mozorg │ ├── about │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── privacy │ └── principles.ftl ├── send_to_device.ftl └── ui.ftl ├── zam ├── 404.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ └── compare │ │ │ └── shared.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── mobile.ftl │ ├── new │ │ └── platform.ftl │ ├── nightly │ │ └── firstrun.ftl │ ├── products.ftl │ └── switch.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozorg │ ├── about │ │ ├── history.ftl │ │ ├── manifesto.ftl │ │ └── shared.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── newsletter_form.ftl ├── send_to_device.ftl └── ui.ftl ├── zh-CN ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners │ ├── consent-banner.ftl │ └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox │ ├── accounts.ftl │ ├── all.ftl │ ├── browsers │ │ ├── best-browser.ftl │ │ ├── chromebook.ftl │ │ ├── compare │ │ │ ├── brave.ftl │ │ │ ├── chrome.ftl │ │ │ ├── edge.ftl │ │ │ ├── index.ftl │ │ │ ├── opera.ftl │ │ │ ├── safari.ftl │ │ │ └── shared.ftl │ │ ├── history │ │ │ ├── browser-history.ftl │ │ │ └── what-is-a-browser.ftl │ │ ├── mobile │ │ │ ├── android.ftl │ │ │ ├── focus.ftl │ │ │ ├── get-ios.ftl │ │ │ ├── index.ftl │ │ │ └── ios.ftl │ │ ├── quantum.ftl │ │ └── windows-64-bit.ftl │ ├── channel.ftl │ ├── developer.ftl │ ├── enterprise.ftl │ ├── facebook_container.ftl │ ├── faq.ftl │ ├── features │ │ ├── adblocker-2025.ftl │ │ ├── adblocker.ftl │ │ ├── add-ons-2023.ftl │ │ ├── bookmarks-2023.ftl │ │ ├── customize-2023.ftl │ │ ├── eyedropper-2023.ftl │ │ ├── fast-2023.ftl │ │ ├── fast-2024.ftl │ │ ├── fingerprinting.ftl │ │ ├── index-2023.ftl │ │ ├── password-manager-2023.ftl │ │ ├── pdf-editor-2023.ftl │ │ ├── picture-in-picture.ftl │ │ ├── pinned-tabs-2023.ftl │ │ ├── private-2023.ftl │ │ ├── private-browsing-2023.ftl │ │ ├── shared.ftl │ │ ├── sync-2023.ftl │ │ └── translate.ftl │ ├── installer-help.ftl │ ├── mobile.ftl │ ├── more.ftl │ ├── more │ │ └── misinformation.ftl │ ├── new │ │ ├── desktop.ftl │ │ ├── download.ftl │ │ └── platform.ftl │ ├── nightly │ │ ├── firstrun.ftl │ │ └── whatsnew.ftl │ ├── products.ftl │ ├── set-as-default │ │ ├── landing.ftl │ │ └── thanks.ftl │ ├── switch.ftl │ ├── welcome │ │ ├── page1.ftl │ │ ├── page14.ftl │ │ ├── page2.ftl │ │ ├── page20-21.ftl │ │ ├── page22.ftl │ │ ├── page23.ftl │ │ ├── page24.ftl │ │ ├── page4.ftl │ │ ├── page6.ftl │ │ ├── page7.ftl │ │ └── page8.ftl │ └── whatsnew │ │ ├── whatsnew-s2d.ftl │ │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg │ ├── about-m24.ftl │ ├── about.ftl │ ├── about │ │ ├── governance │ │ │ └── policies │ │ │ │ ├── community-hotline.ftl │ │ │ │ ├── participation.ftl │ │ │ │ └── reporting.ftl │ │ ├── history.ftl │ │ ├── legal.ftl │ │ ├── manifesto.ftl │ │ ├── shared.ftl │ │ └── this-site.ftl │ ├── contribute.ftl │ ├── home-m24.ftl │ ├── home-new.ftl │ ├── home.ftl │ └── mission.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy │ ├── cookie-settings.ftl │ ├── data-preferences.ftl │ ├── faq-v2.ftl │ ├── faq.ftl │ ├── firefox.ftl │ ├── index.ftl │ └── principles.ftl ├── products │ └── vpn │ │ ├── download.ftl │ │ ├── features.ftl │ │ ├── landing-2023.ftl │ │ ├── landing.ftl │ │ ├── more │ │ ├── ip-address.ftl │ │ ├── vpn-or-proxy.ftl │ │ ├── what-is-a-vpn.ftl │ │ └── when-to-use-a-vpn.ftl │ │ ├── platform-post-download.ftl │ │ ├── platforms │ │ ├── android_v2.ftl │ │ ├── desktop_v2.ftl │ │ ├── ios_v2.ftl │ │ ├── ipad.ftl │ │ ├── linux_v2.ftl │ │ ├── mac_v2.ftl │ │ ├── mobile_v2.ftl │ │ └── windows_v2.ftl │ │ ├── pricing-2023.ftl │ │ ├── resource-center.ftl │ │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl └── zh-TW ├── 404.ftl ├── 410.ftl ├── 500.ftl ├── banners ├── consent-banner.ftl └── firefox-app-store.ftl ├── brands.ftl ├── download_button.ftl ├── firefox ├── accounts.ftl ├── all.ftl ├── browsers │ ├── best-browser.ftl │ ├── chromebook.ftl │ ├── compare │ │ ├── brave.ftl │ │ ├── chrome.ftl │ │ ├── edge.ftl │ │ ├── index.ftl │ │ ├── opera.ftl │ │ ├── safari.ftl │ │ └── shared.ftl │ ├── history │ │ ├── browser-history.ftl │ │ └── what-is-a-browser.ftl │ ├── mobile │ │ ├── android.ftl │ │ ├── focus.ftl │ │ ├── get-ios.ftl │ │ ├── index.ftl │ │ └── ios.ftl │ ├── quantum.ftl │ └── windows-64-bit.ftl ├── channel.ftl ├── developer.ftl ├── enterprise.ftl ├── facebook_container.ftl ├── faq.ftl ├── features │ ├── adblocker-2025.ftl │ ├── adblocker.ftl │ ├── add-ons-2023.ftl │ ├── bookmarks-2023.ftl │ ├── customize-2023.ftl │ ├── eyedropper-2023.ftl │ ├── fast-2023.ftl │ ├── fast-2024.ftl │ ├── fingerprinting.ftl │ ├── index-2023.ftl │ ├── password-manager-2023.ftl │ ├── pdf-editor-2023.ftl │ ├── picture-in-picture.ftl │ ├── pinned-tabs-2023.ftl │ ├── private-2023.ftl │ ├── private-browsing-2023.ftl │ ├── shared.ftl │ ├── sync-2023.ftl │ └── translate.ftl ├── installer-help.ftl ├── mobile.ftl ├── more.ftl ├── more │ └── misinformation.ftl ├── new │ ├── desktop.ftl │ ├── download.ftl │ └── platform.ftl ├── nightly │ ├── firstrun.ftl │ └── whatsnew.ftl ├── products.ftl ├── set-as-default │ ├── landing.ftl │ └── thanks.ftl ├── switch.ftl ├── welcome │ ├── page1.ftl │ ├── page14.ftl │ ├── page2.ftl │ ├── page4.ftl │ ├── page6.ftl │ ├── page7.ftl │ └── page8.ftl └── whatsnew │ ├── whatsnew-s2d.ftl │ └── whatsnew.ftl ├── footer-refresh.ftl ├── footer.ftl ├── fxa_form.ftl ├── mozilla-account-promo.ftl ├── mozorg ├── about-m24.ftl ├── about.ftl ├── about │ ├── governance │ │ └── policies │ │ │ ├── community-hotline.ftl │ │ │ ├── participation.ftl │ │ │ └── reporting.ftl │ ├── history.ftl │ ├── legal.ftl │ ├── manifesto.ftl │ ├── shared.ftl │ └── this-site.ftl ├── contribute.ftl ├── home-m24.ftl ├── home-new.ftl ├── home.ftl ├── mission.ftl └── newsletters.ftl ├── navigation.ftl ├── navigation_refresh.ftl ├── navigation_v2.ftl ├── newsletter_form.ftl ├── privacy ├── cookie-settings.ftl ├── data-preferences.ftl ├── faq-v2.ftl ├── faq.ftl ├── firefox.ftl ├── index.ftl └── principles.ftl ├── products └── vpn │ ├── download.ftl │ ├── features.ftl │ ├── landing-2023.ftl │ ├── landing.ftl │ ├── more │ ├── ip-address.ftl │ ├── vpn-or-proxy.ftl │ ├── what-is-a-vpn.ftl │ └── when-to-use-a-vpn.ftl │ ├── platform-post-download.ftl │ ├── platforms │ ├── android_v2.ftl │ ├── desktop_v2.ftl │ ├── ios_v2.ftl │ ├── ipad.ftl │ ├── linux_v2.ftl │ ├── mac_v2.ftl │ ├── mobile_v2.ftl │ └── windows_v2.ftl │ ├── pricing-2023.ftl │ ├── resource-center.ftl │ └── shared.ftl ├── send_to_device.ftl ├── sub_navigation.ftl └── ui.ftl /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/LICENSE -------------------------------------------------------------------------------- /ach/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ach/404.ftl -------------------------------------------------------------------------------- /ach/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ach/500.ftl -------------------------------------------------------------------------------- /ach/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ach/brands.ftl -------------------------------------------------------------------------------- /ach/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ach/footer.ftl -------------------------------------------------------------------------------- /ach/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ach/fxa_form.ftl -------------------------------------------------------------------------------- /ach/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ach/navigation.ftl -------------------------------------------------------------------------------- /ach/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ach/ui.ftl -------------------------------------------------------------------------------- /af/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/af/404.ftl -------------------------------------------------------------------------------- /af/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/af/brands.ftl -------------------------------------------------------------------------------- /af/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/af/firefox/all.ftl -------------------------------------------------------------------------------- /af/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/af/footer.ftl -------------------------------------------------------------------------------- /af/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/af/mozorg/home.ftl -------------------------------------------------------------------------------- /af/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/af/navigation.ftl -------------------------------------------------------------------------------- /af/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/af/ui.ftl -------------------------------------------------------------------------------- /am/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/404.ftl -------------------------------------------------------------------------------- /am/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/500.ftl -------------------------------------------------------------------------------- /am/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/brands.ftl -------------------------------------------------------------------------------- /am/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/firefox/all.ftl -------------------------------------------------------------------------------- /am/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/firefox/faq.ftl -------------------------------------------------------------------------------- /am/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/footer.ftl -------------------------------------------------------------------------------- /am/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/fxa_form.ftl -------------------------------------------------------------------------------- /am/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/mozorg/home.ftl -------------------------------------------------------------------------------- /am/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/navigation.ftl -------------------------------------------------------------------------------- /am/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/am/ui.ftl -------------------------------------------------------------------------------- /an/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/404.ftl -------------------------------------------------------------------------------- /an/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/500.ftl -------------------------------------------------------------------------------- /an/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/brands.ftl -------------------------------------------------------------------------------- /an/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/firefox/all.ftl -------------------------------------------------------------------------------- /an/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/footer.ftl -------------------------------------------------------------------------------- /an/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/fxa_form.ftl -------------------------------------------------------------------------------- /an/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/mozorg/home.ftl -------------------------------------------------------------------------------- /an/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/navigation.ftl -------------------------------------------------------------------------------- /an/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/an/ui.ftl -------------------------------------------------------------------------------- /ar/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/404.ftl -------------------------------------------------------------------------------- /ar/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/410.ftl -------------------------------------------------------------------------------- /ar/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/500.ftl -------------------------------------------------------------------------------- /ar/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/brands.ftl -------------------------------------------------------------------------------- /ar/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/firefox/all.ftl -------------------------------------------------------------------------------- /ar/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/firefox/faq.ftl -------------------------------------------------------------------------------- /ar/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/footer.ftl -------------------------------------------------------------------------------- /ar/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/fxa_form.ftl -------------------------------------------------------------------------------- /ar/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/mozorg/home.ftl -------------------------------------------------------------------------------- /ar/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/navigation.ftl -------------------------------------------------------------------------------- /ar/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/privacy/faq.ftl -------------------------------------------------------------------------------- /ar/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ar/ui.ftl -------------------------------------------------------------------------------- /ast/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ast/404.ftl -------------------------------------------------------------------------------- /ast/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ast/500.ftl -------------------------------------------------------------------------------- /ast/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ast/brands.ftl -------------------------------------------------------------------------------- /ast/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ast/footer.ftl -------------------------------------------------------------------------------- /ast/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ast/fxa_form.ftl -------------------------------------------------------------------------------- /ast/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ast/navigation.ftl -------------------------------------------------------------------------------- /ast/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ast/ui.ftl -------------------------------------------------------------------------------- /az/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/404.ftl -------------------------------------------------------------------------------- /az/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/500.ftl -------------------------------------------------------------------------------- /az/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/brands.ftl -------------------------------------------------------------------------------- /az/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/firefox/all.ftl -------------------------------------------------------------------------------- /az/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/footer.ftl -------------------------------------------------------------------------------- /az/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/fxa_form.ftl -------------------------------------------------------------------------------- /az/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/mozorg/home.ftl -------------------------------------------------------------------------------- /az/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/navigation.ftl -------------------------------------------------------------------------------- /az/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/privacy/faq.ftl -------------------------------------------------------------------------------- /az/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/az/ui.ftl -------------------------------------------------------------------------------- /azz/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/azz/404.ftl -------------------------------------------------------------------------------- /azz/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/azz/brands.ftl -------------------------------------------------------------------------------- /azz/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/azz/footer.ftl -------------------------------------------------------------------------------- /azz/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/azz/navigation.ftl -------------------------------------------------------------------------------- /azz/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/azz/ui.ftl -------------------------------------------------------------------------------- /be/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/404.ftl -------------------------------------------------------------------------------- /be/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/410.ftl -------------------------------------------------------------------------------- /be/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/500.ftl -------------------------------------------------------------------------------- /be/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/brands.ftl -------------------------------------------------------------------------------- /be/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/firefox/all.ftl -------------------------------------------------------------------------------- /be/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/firefox/faq.ftl -------------------------------------------------------------------------------- /be/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/footer.ftl -------------------------------------------------------------------------------- /be/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/fxa_form.ftl -------------------------------------------------------------------------------- /be/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/mozorg/home.ftl -------------------------------------------------------------------------------- /be/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/navigation.ftl -------------------------------------------------------------------------------- /be/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/privacy/faq.ftl -------------------------------------------------------------------------------- /be/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/be/ui.ftl -------------------------------------------------------------------------------- /bg/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/404.ftl -------------------------------------------------------------------------------- /bg/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/410.ftl -------------------------------------------------------------------------------- /bg/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/500.ftl -------------------------------------------------------------------------------- /bg/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/brands.ftl -------------------------------------------------------------------------------- /bg/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/firefox/all.ftl -------------------------------------------------------------------------------- /bg/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/firefox/faq.ftl -------------------------------------------------------------------------------- /bg/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/footer.ftl -------------------------------------------------------------------------------- /bg/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/fxa_form.ftl -------------------------------------------------------------------------------- /bg/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/mozorg/home.ftl -------------------------------------------------------------------------------- /bg/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/navigation.ftl -------------------------------------------------------------------------------- /bg/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bg/ui.ftl -------------------------------------------------------------------------------- /bn/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/404.ftl -------------------------------------------------------------------------------- /bn/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/500.ftl -------------------------------------------------------------------------------- /bn/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/brands.ftl -------------------------------------------------------------------------------- /bn/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/firefox/all.ftl -------------------------------------------------------------------------------- /bn/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/footer.ftl -------------------------------------------------------------------------------- /bn/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/fxa_form.ftl -------------------------------------------------------------------------------- /bn/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/mozorg/home.ftl -------------------------------------------------------------------------------- /bn/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/navigation.ftl -------------------------------------------------------------------------------- /bn/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/privacy/faq.ftl -------------------------------------------------------------------------------- /bn/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bn/ui.ftl -------------------------------------------------------------------------------- /br/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/404.ftl -------------------------------------------------------------------------------- /br/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/500.ftl -------------------------------------------------------------------------------- /br/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/brands.ftl -------------------------------------------------------------------------------- /br/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/firefox/all.ftl -------------------------------------------------------------------------------- /br/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/firefox/faq.ftl -------------------------------------------------------------------------------- /br/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/footer.ftl -------------------------------------------------------------------------------- /br/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/fxa_form.ftl -------------------------------------------------------------------------------- /br/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/mozorg/home.ftl -------------------------------------------------------------------------------- /br/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/navigation.ftl -------------------------------------------------------------------------------- /br/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/privacy/faq.ftl -------------------------------------------------------------------------------- /br/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/br/ui.ftl -------------------------------------------------------------------------------- /bs/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/404.ftl -------------------------------------------------------------------------------- /bs/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/410.ftl -------------------------------------------------------------------------------- /bs/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/500.ftl -------------------------------------------------------------------------------- /bs/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/brands.ftl -------------------------------------------------------------------------------- /bs/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/firefox/all.ftl -------------------------------------------------------------------------------- /bs/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/firefox/faq.ftl -------------------------------------------------------------------------------- /bs/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/footer.ftl -------------------------------------------------------------------------------- /bs/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/fxa_form.ftl -------------------------------------------------------------------------------- /bs/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/mozorg/home.ftl -------------------------------------------------------------------------------- /bs/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/navigation.ftl -------------------------------------------------------------------------------- /bs/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/privacy/faq.ftl -------------------------------------------------------------------------------- /bs/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/bs/ui.ftl -------------------------------------------------------------------------------- /ca/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/404.ftl -------------------------------------------------------------------------------- /ca/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/500.ftl -------------------------------------------------------------------------------- /ca/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/brands.ftl -------------------------------------------------------------------------------- /ca/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/firefox/all.ftl -------------------------------------------------------------------------------- /ca/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/footer.ftl -------------------------------------------------------------------------------- /ca/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/fxa_form.ftl -------------------------------------------------------------------------------- /ca/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/mozorg/home.ftl -------------------------------------------------------------------------------- /ca/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/navigation.ftl -------------------------------------------------------------------------------- /ca/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ca/ui.ftl -------------------------------------------------------------------------------- /cak/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cak/404.ftl -------------------------------------------------------------------------------- /cak/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cak/500.ftl -------------------------------------------------------------------------------- /cak/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cak/brands.ftl -------------------------------------------------------------------------------- /cak/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cak/footer.ftl -------------------------------------------------------------------------------- /cak/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cak/fxa_form.ftl -------------------------------------------------------------------------------- /cak/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cak/navigation.ftl -------------------------------------------------------------------------------- /cak/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cak/ui.ftl -------------------------------------------------------------------------------- /crh/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/crh/brands.ftl -------------------------------------------------------------------------------- /crh/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/crh/footer.ftl -------------------------------------------------------------------------------- /crh/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/crh/navigation.ftl -------------------------------------------------------------------------------- /crh/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/crh/ui.ftl -------------------------------------------------------------------------------- /cs/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/404.ftl -------------------------------------------------------------------------------- /cs/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/410.ftl -------------------------------------------------------------------------------- /cs/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/500.ftl -------------------------------------------------------------------------------- /cs/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/brands.ftl -------------------------------------------------------------------------------- /cs/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/firefox/all.ftl -------------------------------------------------------------------------------- /cs/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/firefox/faq.ftl -------------------------------------------------------------------------------- /cs/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/footer.ftl -------------------------------------------------------------------------------- /cs/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/fxa_form.ftl -------------------------------------------------------------------------------- /cs/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/mozorg/home.ftl -------------------------------------------------------------------------------- /cs/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/navigation.ftl -------------------------------------------------------------------------------- /cs/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/privacy/faq.ftl -------------------------------------------------------------------------------- /cs/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cs/ui.ftl -------------------------------------------------------------------------------- /cy/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/404.ftl -------------------------------------------------------------------------------- /cy/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/410.ftl -------------------------------------------------------------------------------- /cy/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/500.ftl -------------------------------------------------------------------------------- /cy/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/brands.ftl -------------------------------------------------------------------------------- /cy/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/firefox/all.ftl -------------------------------------------------------------------------------- /cy/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/firefox/faq.ftl -------------------------------------------------------------------------------- /cy/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/footer.ftl -------------------------------------------------------------------------------- /cy/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/fxa_form.ftl -------------------------------------------------------------------------------- /cy/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/mozorg/home.ftl -------------------------------------------------------------------------------- /cy/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/navigation.ftl -------------------------------------------------------------------------------- /cy/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/privacy/faq.ftl -------------------------------------------------------------------------------- /cy/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/cy/ui.ftl -------------------------------------------------------------------------------- /da/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/404.ftl -------------------------------------------------------------------------------- /da/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/500.ftl -------------------------------------------------------------------------------- /da/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/brands.ftl -------------------------------------------------------------------------------- /da/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/firefox/all.ftl -------------------------------------------------------------------------------- /da/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/footer.ftl -------------------------------------------------------------------------------- /da/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/fxa_form.ftl -------------------------------------------------------------------------------- /da/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/mozorg/home.ftl -------------------------------------------------------------------------------- /da/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/navigation.ftl -------------------------------------------------------------------------------- /da/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/privacy/faq.ftl -------------------------------------------------------------------------------- /da/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/da/ui.ftl -------------------------------------------------------------------------------- /de/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/404.ftl -------------------------------------------------------------------------------- /de/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/410.ftl -------------------------------------------------------------------------------- /de/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/500.ftl -------------------------------------------------------------------------------- /de/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/brands.ftl -------------------------------------------------------------------------------- /de/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/firefox/all.ftl -------------------------------------------------------------------------------- /de/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/firefox/faq.ftl -------------------------------------------------------------------------------- /de/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/footer.ftl -------------------------------------------------------------------------------- /de/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/fxa_form.ftl -------------------------------------------------------------------------------- /de/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/mozorg/home.ftl -------------------------------------------------------------------------------- /de/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/navigation.ftl -------------------------------------------------------------------------------- /de/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/privacy/faq.ftl -------------------------------------------------------------------------------- /de/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/de/ui.ftl -------------------------------------------------------------------------------- /dsb/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/404.ftl -------------------------------------------------------------------------------- /dsb/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/410.ftl -------------------------------------------------------------------------------- /dsb/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/500.ftl -------------------------------------------------------------------------------- /dsb/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/brands.ftl -------------------------------------------------------------------------------- /dsb/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/footer.ftl -------------------------------------------------------------------------------- /dsb/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/fxa_form.ftl -------------------------------------------------------------------------------- /dsb/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/navigation.ftl -------------------------------------------------------------------------------- /dsb/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/dsb/ui.ftl -------------------------------------------------------------------------------- /el/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/404.ftl -------------------------------------------------------------------------------- /el/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/410.ftl -------------------------------------------------------------------------------- /el/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/500.ftl -------------------------------------------------------------------------------- /el/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/brands.ftl -------------------------------------------------------------------------------- /el/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/firefox/all.ftl -------------------------------------------------------------------------------- /el/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/firefox/faq.ftl -------------------------------------------------------------------------------- /el/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/footer.ftl -------------------------------------------------------------------------------- /el/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/fxa_form.ftl -------------------------------------------------------------------------------- /el/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/mozorg/home.ftl -------------------------------------------------------------------------------- /el/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/navigation.ftl -------------------------------------------------------------------------------- /el/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/privacy/faq.ftl -------------------------------------------------------------------------------- /el/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/el/ui.ftl -------------------------------------------------------------------------------- /en-CA/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-CA/404.ftl -------------------------------------------------------------------------------- /en-CA/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-CA/410.ftl -------------------------------------------------------------------------------- /en-CA/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-CA/500.ftl -------------------------------------------------------------------------------- /en-CA/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-CA/brands.ftl -------------------------------------------------------------------------------- /en-CA/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-CA/footer.ftl -------------------------------------------------------------------------------- /en-CA/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-CA/fxa_form.ftl -------------------------------------------------------------------------------- /en-CA/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-CA/ui.ftl -------------------------------------------------------------------------------- /en-GB/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-GB/404.ftl -------------------------------------------------------------------------------- /en-GB/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-GB/410.ftl -------------------------------------------------------------------------------- /en-GB/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-GB/500.ftl -------------------------------------------------------------------------------- /en-GB/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-GB/brands.ftl -------------------------------------------------------------------------------- /en-GB/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-GB/footer.ftl -------------------------------------------------------------------------------- /en-GB/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-GB/fxa_form.ftl -------------------------------------------------------------------------------- /en-GB/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en-GB/ui.ftl -------------------------------------------------------------------------------- /en/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/404.ftl -------------------------------------------------------------------------------- /en/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/410.ftl -------------------------------------------------------------------------------- /en/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/500.ftl -------------------------------------------------------------------------------- /en/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/brands.ftl -------------------------------------------------------------------------------- /en/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/firefox/all.ftl -------------------------------------------------------------------------------- /en/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/firefox/faq.ftl -------------------------------------------------------------------------------- /en/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/footer.ftl -------------------------------------------------------------------------------- /en/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/fxa_form.ftl -------------------------------------------------------------------------------- /en/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/mozorg/home.ftl -------------------------------------------------------------------------------- /en/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/navigation.ftl -------------------------------------------------------------------------------- /en/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/privacy/faq.ftl -------------------------------------------------------------------------------- /en/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/en/ui.ftl -------------------------------------------------------------------------------- /eo/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/404.ftl -------------------------------------------------------------------------------- /eo/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/500.ftl -------------------------------------------------------------------------------- /eo/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/brands.ftl -------------------------------------------------------------------------------- /eo/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/firefox/all.ftl -------------------------------------------------------------------------------- /eo/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/footer.ftl -------------------------------------------------------------------------------- /eo/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/fxa_form.ftl -------------------------------------------------------------------------------- /eo/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/mozorg/home.ftl -------------------------------------------------------------------------------- /eo/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/navigation.ftl -------------------------------------------------------------------------------- /eo/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eo/ui.ftl -------------------------------------------------------------------------------- /es-AR/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-AR/404.ftl -------------------------------------------------------------------------------- /es-AR/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-AR/410.ftl -------------------------------------------------------------------------------- /es-AR/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-AR/500.ftl -------------------------------------------------------------------------------- /es-AR/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-AR/brands.ftl -------------------------------------------------------------------------------- /es-AR/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-AR/footer.ftl -------------------------------------------------------------------------------- /es-AR/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-AR/fxa_form.ftl -------------------------------------------------------------------------------- /es-AR/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-AR/ui.ftl -------------------------------------------------------------------------------- /es-CL/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-CL/404.ftl -------------------------------------------------------------------------------- /es-CL/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-CL/410.ftl -------------------------------------------------------------------------------- /es-CL/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-CL/500.ftl -------------------------------------------------------------------------------- /es-CL/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-CL/brands.ftl -------------------------------------------------------------------------------- /es-CL/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-CL/footer.ftl -------------------------------------------------------------------------------- /es-CL/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-CL/fxa_form.ftl -------------------------------------------------------------------------------- /es-CL/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-CL/ui.ftl -------------------------------------------------------------------------------- /es-ES/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-ES/404.ftl -------------------------------------------------------------------------------- /es-ES/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-ES/410.ftl -------------------------------------------------------------------------------- /es-ES/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-ES/500.ftl -------------------------------------------------------------------------------- /es-ES/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-ES/brands.ftl -------------------------------------------------------------------------------- /es-ES/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-ES/footer.ftl -------------------------------------------------------------------------------- /es-ES/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-ES/fxa_form.ftl -------------------------------------------------------------------------------- /es-ES/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-ES/ui.ftl -------------------------------------------------------------------------------- /es-MX/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-MX/404.ftl -------------------------------------------------------------------------------- /es-MX/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-MX/500.ftl -------------------------------------------------------------------------------- /es-MX/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-MX/brands.ftl -------------------------------------------------------------------------------- /es-MX/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-MX/footer.ftl -------------------------------------------------------------------------------- /es-MX/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-MX/fxa_form.ftl -------------------------------------------------------------------------------- /es-MX/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/es-MX/ui.ftl -------------------------------------------------------------------------------- /et/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/404.ftl -------------------------------------------------------------------------------- /et/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/500.ftl -------------------------------------------------------------------------------- /et/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/brands.ftl -------------------------------------------------------------------------------- /et/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/firefox/all.ftl -------------------------------------------------------------------------------- /et/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/footer.ftl -------------------------------------------------------------------------------- /et/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/fxa_form.ftl -------------------------------------------------------------------------------- /et/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/mozorg/home.ftl -------------------------------------------------------------------------------- /et/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/navigation.ftl -------------------------------------------------------------------------------- /et/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/privacy/faq.ftl -------------------------------------------------------------------------------- /et/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/et/ui.ftl -------------------------------------------------------------------------------- /eu/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/404.ftl -------------------------------------------------------------------------------- /eu/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/500.ftl -------------------------------------------------------------------------------- /eu/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/brands.ftl -------------------------------------------------------------------------------- /eu/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/firefox/all.ftl -------------------------------------------------------------------------------- /eu/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/footer.ftl -------------------------------------------------------------------------------- /eu/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/fxa_form.ftl -------------------------------------------------------------------------------- /eu/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/mozorg/home.ftl -------------------------------------------------------------------------------- /eu/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/navigation.ftl -------------------------------------------------------------------------------- /eu/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/eu/ui.ftl -------------------------------------------------------------------------------- /fa/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/404.ftl -------------------------------------------------------------------------------- /fa/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/500.ftl -------------------------------------------------------------------------------- /fa/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/brands.ftl -------------------------------------------------------------------------------- /fa/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/firefox/all.ftl -------------------------------------------------------------------------------- /fa/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/footer.ftl -------------------------------------------------------------------------------- /fa/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/fxa_form.ftl -------------------------------------------------------------------------------- /fa/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/mozorg/home.ftl -------------------------------------------------------------------------------- /fa/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/navigation.ftl -------------------------------------------------------------------------------- /fa/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/privacy/faq.ftl -------------------------------------------------------------------------------- /fa/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fa/ui.ftl -------------------------------------------------------------------------------- /ff/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/404.ftl -------------------------------------------------------------------------------- /ff/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/500.ftl -------------------------------------------------------------------------------- /ff/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/brands.ftl -------------------------------------------------------------------------------- /ff/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/firefox/all.ftl -------------------------------------------------------------------------------- /ff/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/footer.ftl -------------------------------------------------------------------------------- /ff/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/fxa_form.ftl -------------------------------------------------------------------------------- /ff/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/mozorg/home.ftl -------------------------------------------------------------------------------- /ff/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/navigation.ftl -------------------------------------------------------------------------------- /ff/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ff/ui.ftl -------------------------------------------------------------------------------- /fi/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/404.ftl -------------------------------------------------------------------------------- /fi/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/410.ftl -------------------------------------------------------------------------------- /fi/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/500.ftl -------------------------------------------------------------------------------- /fi/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/brands.ftl -------------------------------------------------------------------------------- /fi/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/firefox/all.ftl -------------------------------------------------------------------------------- /fi/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/firefox/faq.ftl -------------------------------------------------------------------------------- /fi/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/footer.ftl -------------------------------------------------------------------------------- /fi/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/fxa_form.ftl -------------------------------------------------------------------------------- /fi/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/mozorg/home.ftl -------------------------------------------------------------------------------- /fi/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/navigation.ftl -------------------------------------------------------------------------------- /fi/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/privacy/faq.ftl -------------------------------------------------------------------------------- /fi/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fi/ui.ftl -------------------------------------------------------------------------------- /fr/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/404.ftl -------------------------------------------------------------------------------- /fr/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/410.ftl -------------------------------------------------------------------------------- /fr/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/500.ftl -------------------------------------------------------------------------------- /fr/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/brands.ftl -------------------------------------------------------------------------------- /fr/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/firefox/all.ftl -------------------------------------------------------------------------------- /fr/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/firefox/faq.ftl -------------------------------------------------------------------------------- /fr/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/footer.ftl -------------------------------------------------------------------------------- /fr/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/fxa_form.ftl -------------------------------------------------------------------------------- /fr/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/mozorg/home.ftl -------------------------------------------------------------------------------- /fr/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/navigation.ftl -------------------------------------------------------------------------------- /fr/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/privacy/faq.ftl -------------------------------------------------------------------------------- /fr/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fr/ui.ftl -------------------------------------------------------------------------------- /fy-NL/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fy-NL/404.ftl -------------------------------------------------------------------------------- /fy-NL/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fy-NL/410.ftl -------------------------------------------------------------------------------- /fy-NL/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fy-NL/500.ftl -------------------------------------------------------------------------------- /fy-NL/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fy-NL/brands.ftl -------------------------------------------------------------------------------- /fy-NL/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fy-NL/footer.ftl -------------------------------------------------------------------------------- /fy-NL/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fy-NL/fxa_form.ftl -------------------------------------------------------------------------------- /fy-NL/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/fy-NL/ui.ftl -------------------------------------------------------------------------------- /ga-IE/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ga-IE/404.ftl -------------------------------------------------------------------------------- /ga-IE/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ga-IE/brands.ftl -------------------------------------------------------------------------------- /ga-IE/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ga-IE/footer.ftl -------------------------------------------------------------------------------- /ga-IE/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ga-IE/ui.ftl -------------------------------------------------------------------------------- /gd/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/404.ftl -------------------------------------------------------------------------------- /gd/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/500.ftl -------------------------------------------------------------------------------- /gd/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/brands.ftl -------------------------------------------------------------------------------- /gd/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/firefox/all.ftl -------------------------------------------------------------------------------- /gd/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/footer.ftl -------------------------------------------------------------------------------- /gd/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/fxa_form.ftl -------------------------------------------------------------------------------- /gd/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/mozorg/home.ftl -------------------------------------------------------------------------------- /gd/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/navigation.ftl -------------------------------------------------------------------------------- /gd/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gd/ui.ftl -------------------------------------------------------------------------------- /gl/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/404.ftl -------------------------------------------------------------------------------- /gl/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/500.ftl -------------------------------------------------------------------------------- /gl/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/brands.ftl -------------------------------------------------------------------------------- /gl/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/firefox/all.ftl -------------------------------------------------------------------------------- /gl/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/firefox/faq.ftl -------------------------------------------------------------------------------- /gl/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/footer.ftl -------------------------------------------------------------------------------- /gl/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/fxa_form.ftl -------------------------------------------------------------------------------- /gl/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/mozorg/home.ftl -------------------------------------------------------------------------------- /gl/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/navigation.ftl -------------------------------------------------------------------------------- /gl/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gl/ui.ftl -------------------------------------------------------------------------------- /gn/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/404.ftl -------------------------------------------------------------------------------- /gn/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/410.ftl -------------------------------------------------------------------------------- /gn/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/500.ftl -------------------------------------------------------------------------------- /gn/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/brands.ftl -------------------------------------------------------------------------------- /gn/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/firefox/all.ftl -------------------------------------------------------------------------------- /gn/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/firefox/faq.ftl -------------------------------------------------------------------------------- /gn/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/footer.ftl -------------------------------------------------------------------------------- /gn/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/fxa_form.ftl -------------------------------------------------------------------------------- /gn/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/mozorg/home.ftl -------------------------------------------------------------------------------- /gn/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/navigation.ftl -------------------------------------------------------------------------------- /gn/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/privacy/faq.ftl -------------------------------------------------------------------------------- /gn/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gn/ui.ftl -------------------------------------------------------------------------------- /gu-IN/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gu-IN/404.ftl -------------------------------------------------------------------------------- /gu-IN/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gu-IN/500.ftl -------------------------------------------------------------------------------- /gu-IN/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gu-IN/brands.ftl -------------------------------------------------------------------------------- /gu-IN/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gu-IN/footer.ftl -------------------------------------------------------------------------------- /gu-IN/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gu-IN/fxa_form.ftl -------------------------------------------------------------------------------- /gu-IN/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/gu-IN/ui.ftl -------------------------------------------------------------------------------- /he/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/404.ftl -------------------------------------------------------------------------------- /he/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/500.ftl -------------------------------------------------------------------------------- /he/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/brands.ftl -------------------------------------------------------------------------------- /he/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/firefox/all.ftl -------------------------------------------------------------------------------- /he/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/firefox/faq.ftl -------------------------------------------------------------------------------- /he/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/footer.ftl -------------------------------------------------------------------------------- /he/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/fxa_form.ftl -------------------------------------------------------------------------------- /he/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/mozorg/home.ftl -------------------------------------------------------------------------------- /he/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/navigation.ftl -------------------------------------------------------------------------------- /he/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/he/ui.ftl -------------------------------------------------------------------------------- /hi-IN/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hi-IN/404.ftl -------------------------------------------------------------------------------- /hi-IN/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hi-IN/410.ftl -------------------------------------------------------------------------------- /hi-IN/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hi-IN/500.ftl -------------------------------------------------------------------------------- /hi-IN/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hi-IN/brands.ftl -------------------------------------------------------------------------------- /hi-IN/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hi-IN/footer.ftl -------------------------------------------------------------------------------- /hi-IN/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hi-IN/fxa_form.ftl -------------------------------------------------------------------------------- /hi-IN/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hi-IN/ui.ftl -------------------------------------------------------------------------------- /hr/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/404.ftl -------------------------------------------------------------------------------- /hr/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/410.ftl -------------------------------------------------------------------------------- /hr/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/500.ftl -------------------------------------------------------------------------------- /hr/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/brands.ftl -------------------------------------------------------------------------------- /hr/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/firefox/all.ftl -------------------------------------------------------------------------------- /hr/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/firefox/faq.ftl -------------------------------------------------------------------------------- /hr/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/footer.ftl -------------------------------------------------------------------------------- /hr/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/fxa_form.ftl -------------------------------------------------------------------------------- /hr/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/mozorg/home.ftl -------------------------------------------------------------------------------- /hr/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/navigation.ftl -------------------------------------------------------------------------------- /hr/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/privacy/faq.ftl -------------------------------------------------------------------------------- /hr/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hr/ui.ftl -------------------------------------------------------------------------------- /hsb/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/404.ftl -------------------------------------------------------------------------------- /hsb/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/410.ftl -------------------------------------------------------------------------------- /hsb/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/500.ftl -------------------------------------------------------------------------------- /hsb/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/brands.ftl -------------------------------------------------------------------------------- /hsb/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/footer.ftl -------------------------------------------------------------------------------- /hsb/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/fxa_form.ftl -------------------------------------------------------------------------------- /hsb/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/navigation.ftl -------------------------------------------------------------------------------- /hsb/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hsb/ui.ftl -------------------------------------------------------------------------------- /hu/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/404.ftl -------------------------------------------------------------------------------- /hu/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/410.ftl -------------------------------------------------------------------------------- /hu/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/500.ftl -------------------------------------------------------------------------------- /hu/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/brands.ftl -------------------------------------------------------------------------------- /hu/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/firefox/all.ftl -------------------------------------------------------------------------------- /hu/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/firefox/faq.ftl -------------------------------------------------------------------------------- /hu/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/footer.ftl -------------------------------------------------------------------------------- /hu/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/fxa_form.ftl -------------------------------------------------------------------------------- /hu/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/mozorg/home.ftl -------------------------------------------------------------------------------- /hu/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/navigation.ftl -------------------------------------------------------------------------------- /hu/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/privacy/faq.ftl -------------------------------------------------------------------------------- /hu/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hu/ui.ftl -------------------------------------------------------------------------------- /hy-AM/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hy-AM/404.ftl -------------------------------------------------------------------------------- /hy-AM/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hy-AM/500.ftl -------------------------------------------------------------------------------- /hy-AM/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hy-AM/brands.ftl -------------------------------------------------------------------------------- /hy-AM/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hy-AM/footer.ftl -------------------------------------------------------------------------------- /hy-AM/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hy-AM/fxa_form.ftl -------------------------------------------------------------------------------- /hy-AM/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/hy-AM/ui.ftl -------------------------------------------------------------------------------- /ia/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/404.ftl -------------------------------------------------------------------------------- /ia/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/410.ftl -------------------------------------------------------------------------------- /ia/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/500.ftl -------------------------------------------------------------------------------- /ia/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/brands.ftl -------------------------------------------------------------------------------- /ia/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/firefox/all.ftl -------------------------------------------------------------------------------- /ia/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/firefox/faq.ftl -------------------------------------------------------------------------------- /ia/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/footer.ftl -------------------------------------------------------------------------------- /ia/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/fxa_form.ftl -------------------------------------------------------------------------------- /ia/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/mozorg/home.ftl -------------------------------------------------------------------------------- /ia/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/navigation.ftl -------------------------------------------------------------------------------- /ia/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/privacy/faq.ftl -------------------------------------------------------------------------------- /ia/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ia/ui.ftl -------------------------------------------------------------------------------- /id/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/404.ftl -------------------------------------------------------------------------------- /id/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/410.ftl -------------------------------------------------------------------------------- /id/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/500.ftl -------------------------------------------------------------------------------- /id/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/brands.ftl -------------------------------------------------------------------------------- /id/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/firefox/all.ftl -------------------------------------------------------------------------------- /id/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/firefox/faq.ftl -------------------------------------------------------------------------------- /id/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/footer.ftl -------------------------------------------------------------------------------- /id/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/fxa_form.ftl -------------------------------------------------------------------------------- /id/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/mozorg/home.ftl -------------------------------------------------------------------------------- /id/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/navigation.ftl -------------------------------------------------------------------------------- /id/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/privacy/faq.ftl -------------------------------------------------------------------------------- /id/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/id/ui.ftl -------------------------------------------------------------------------------- /is/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/404.ftl -------------------------------------------------------------------------------- /is/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/500.ftl -------------------------------------------------------------------------------- /is/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/brands.ftl -------------------------------------------------------------------------------- /is/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/firefox/all.ftl -------------------------------------------------------------------------------- /is/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/footer.ftl -------------------------------------------------------------------------------- /is/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/fxa_form.ftl -------------------------------------------------------------------------------- /is/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/mozorg/home.ftl -------------------------------------------------------------------------------- /is/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/navigation.ftl -------------------------------------------------------------------------------- /is/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/is/ui.ftl -------------------------------------------------------------------------------- /it/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/404.ftl -------------------------------------------------------------------------------- /it/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/410.ftl -------------------------------------------------------------------------------- /it/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/500.ftl -------------------------------------------------------------------------------- /it/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/brands.ftl -------------------------------------------------------------------------------- /it/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/firefox/all.ftl -------------------------------------------------------------------------------- /it/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/firefox/faq.ftl -------------------------------------------------------------------------------- /it/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/footer.ftl -------------------------------------------------------------------------------- /it/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/fxa_form.ftl -------------------------------------------------------------------------------- /it/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/mozorg/home.ftl -------------------------------------------------------------------------------- /it/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/navigation.ftl -------------------------------------------------------------------------------- /it/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/privacy/faq.ftl -------------------------------------------------------------------------------- /it/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/it/ui.ftl -------------------------------------------------------------------------------- /ja/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/404.ftl -------------------------------------------------------------------------------- /ja/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/410.ftl -------------------------------------------------------------------------------- /ja/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/500.ftl -------------------------------------------------------------------------------- /ja/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/brands.ftl -------------------------------------------------------------------------------- /ja/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/firefox/all.ftl -------------------------------------------------------------------------------- /ja/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/firefox/faq.ftl -------------------------------------------------------------------------------- /ja/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/footer.ftl -------------------------------------------------------------------------------- /ja/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/fxa_form.ftl -------------------------------------------------------------------------------- /ja/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/mozorg/home.ftl -------------------------------------------------------------------------------- /ja/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/navigation.ftl -------------------------------------------------------------------------------- /ja/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/privacy/faq.ftl -------------------------------------------------------------------------------- /ja/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ja/ui.ftl -------------------------------------------------------------------------------- /ka/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/404.ftl -------------------------------------------------------------------------------- /ka/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/410.ftl -------------------------------------------------------------------------------- /ka/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/500.ftl -------------------------------------------------------------------------------- /ka/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/brands.ftl -------------------------------------------------------------------------------- /ka/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/firefox/all.ftl -------------------------------------------------------------------------------- /ka/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/firefox/faq.ftl -------------------------------------------------------------------------------- /ka/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/footer.ftl -------------------------------------------------------------------------------- /ka/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/fxa_form.ftl -------------------------------------------------------------------------------- /ka/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/mozorg/home.ftl -------------------------------------------------------------------------------- /ka/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/navigation.ftl -------------------------------------------------------------------------------- /ka/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/privacy/faq.ftl -------------------------------------------------------------------------------- /ka/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ka/ui.ftl -------------------------------------------------------------------------------- /kab/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/404.ftl -------------------------------------------------------------------------------- /kab/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/410.ftl -------------------------------------------------------------------------------- /kab/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/500.ftl -------------------------------------------------------------------------------- /kab/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/brands.ftl -------------------------------------------------------------------------------- /kab/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/footer.ftl -------------------------------------------------------------------------------- /kab/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/fxa_form.ftl -------------------------------------------------------------------------------- /kab/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/navigation.ftl -------------------------------------------------------------------------------- /kab/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kab/ui.ftl -------------------------------------------------------------------------------- /kk/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/404.ftl -------------------------------------------------------------------------------- /kk/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/500.ftl -------------------------------------------------------------------------------- /kk/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/brands.ftl -------------------------------------------------------------------------------- /kk/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/firefox/all.ftl -------------------------------------------------------------------------------- /kk/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/footer.ftl -------------------------------------------------------------------------------- /kk/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/fxa_form.ftl -------------------------------------------------------------------------------- /kk/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/mozorg/home.ftl -------------------------------------------------------------------------------- /kk/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/navigation.ftl -------------------------------------------------------------------------------- /kk/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kk/ui.ftl -------------------------------------------------------------------------------- /km/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/404.ftl -------------------------------------------------------------------------------- /km/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/500.ftl -------------------------------------------------------------------------------- /km/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/brands.ftl -------------------------------------------------------------------------------- /km/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/firefox/all.ftl -------------------------------------------------------------------------------- /km/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/footer.ftl -------------------------------------------------------------------------------- /km/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/mozorg/home.ftl -------------------------------------------------------------------------------- /km/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/navigation.ftl -------------------------------------------------------------------------------- /km/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/km/ui.ftl -------------------------------------------------------------------------------- /kn/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/404.ftl -------------------------------------------------------------------------------- /kn/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/500.ftl -------------------------------------------------------------------------------- /kn/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/brands.ftl -------------------------------------------------------------------------------- /kn/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/firefox/all.ftl -------------------------------------------------------------------------------- /kn/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/footer.ftl -------------------------------------------------------------------------------- /kn/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/fxa_form.ftl -------------------------------------------------------------------------------- /kn/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/mozorg/home.ftl -------------------------------------------------------------------------------- /kn/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/navigation.ftl -------------------------------------------------------------------------------- /kn/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/privacy/faq.ftl -------------------------------------------------------------------------------- /kn/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/kn/ui.ftl -------------------------------------------------------------------------------- /ko/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/404.ftl -------------------------------------------------------------------------------- /ko/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/410.ftl -------------------------------------------------------------------------------- /ko/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/500.ftl -------------------------------------------------------------------------------- /ko/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/brands.ftl -------------------------------------------------------------------------------- /ko/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/firefox/all.ftl -------------------------------------------------------------------------------- /ko/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/firefox/faq.ftl -------------------------------------------------------------------------------- /ko/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/footer.ftl -------------------------------------------------------------------------------- /ko/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/fxa_form.ftl -------------------------------------------------------------------------------- /ko/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/mozorg/home.ftl -------------------------------------------------------------------------------- /ko/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/navigation.ftl -------------------------------------------------------------------------------- /ko/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/privacy/faq.ftl -------------------------------------------------------------------------------- /ko/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ko/ui.ftl -------------------------------------------------------------------------------- /l10n-pontoon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/l10n-pontoon.toml -------------------------------------------------------------------------------- /l10n-vendor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/l10n-vendor.toml -------------------------------------------------------------------------------- /lij/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lij/404.ftl -------------------------------------------------------------------------------- /lij/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lij/500.ftl -------------------------------------------------------------------------------- /lij/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lij/brands.ftl -------------------------------------------------------------------------------- /lij/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lij/footer.ftl -------------------------------------------------------------------------------- /lij/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lij/fxa_form.ftl -------------------------------------------------------------------------------- /lij/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lij/navigation.ftl -------------------------------------------------------------------------------- /lij/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lij/ui.ftl -------------------------------------------------------------------------------- /lo/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/404.ftl -------------------------------------------------------------------------------- /lo/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/410.ftl -------------------------------------------------------------------------------- /lo/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/500.ftl -------------------------------------------------------------------------------- /lo/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/brands.ftl -------------------------------------------------------------------------------- /lo/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/firefox/all.ftl -------------------------------------------------------------------------------- /lo/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/firefox/faq.ftl -------------------------------------------------------------------------------- /lo/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/footer.ftl -------------------------------------------------------------------------------- /lo/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/fxa_form.ftl -------------------------------------------------------------------------------- /lo/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/mozorg/home.ftl -------------------------------------------------------------------------------- /lo/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/navigation.ftl -------------------------------------------------------------------------------- /lo/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/privacy/faq.ftl -------------------------------------------------------------------------------- /lo/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lo/ui.ftl -------------------------------------------------------------------------------- /lt/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/404.ftl -------------------------------------------------------------------------------- /lt/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/500.ftl -------------------------------------------------------------------------------- /lt/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/brands.ftl -------------------------------------------------------------------------------- /lt/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/firefox/all.ftl -------------------------------------------------------------------------------- /lt/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/footer.ftl -------------------------------------------------------------------------------- /lt/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/fxa_form.ftl -------------------------------------------------------------------------------- /lt/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/mozorg/home.ftl -------------------------------------------------------------------------------- /lt/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/navigation.ftl -------------------------------------------------------------------------------- /lt/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/privacy/faq.ftl -------------------------------------------------------------------------------- /lt/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lt/ui.ftl -------------------------------------------------------------------------------- /ltg/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ltg/brands.ftl -------------------------------------------------------------------------------- /ltg/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ltg/footer.ftl -------------------------------------------------------------------------------- /ltg/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ltg/navigation.ftl -------------------------------------------------------------------------------- /ltg/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ltg/ui.ftl -------------------------------------------------------------------------------- /lv/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lv/404.ftl -------------------------------------------------------------------------------- /lv/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lv/brands.ftl -------------------------------------------------------------------------------- /lv/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lv/firefox/all.ftl -------------------------------------------------------------------------------- /lv/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lv/footer.ftl -------------------------------------------------------------------------------- /lv/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lv/mozorg/home.ftl -------------------------------------------------------------------------------- /lv/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lv/navigation.ftl -------------------------------------------------------------------------------- /lv/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/lv/ui.ftl -------------------------------------------------------------------------------- /mk/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/404.ftl -------------------------------------------------------------------------------- /mk/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/500.ftl -------------------------------------------------------------------------------- /mk/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/brands.ftl -------------------------------------------------------------------------------- /mk/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/firefox/all.ftl -------------------------------------------------------------------------------- /mk/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/footer.ftl -------------------------------------------------------------------------------- /mk/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/mozorg/home.ftl -------------------------------------------------------------------------------- /mk/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/navigation.ftl -------------------------------------------------------------------------------- /mk/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mk/ui.ftl -------------------------------------------------------------------------------- /ml/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/404.ftl -------------------------------------------------------------------------------- /ml/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/500.ftl -------------------------------------------------------------------------------- /ml/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/brands.ftl -------------------------------------------------------------------------------- /ml/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/firefox/all.ftl -------------------------------------------------------------------------------- /ml/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/firefox/faq.ftl -------------------------------------------------------------------------------- /ml/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/footer.ftl -------------------------------------------------------------------------------- /ml/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/fxa_form.ftl -------------------------------------------------------------------------------- /ml/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/mozorg/home.ftl -------------------------------------------------------------------------------- /ml/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/navigation.ftl -------------------------------------------------------------------------------- /ml/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/privacy/faq.ftl -------------------------------------------------------------------------------- /ml/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ml/ui.ftl -------------------------------------------------------------------------------- /mr/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/404.ftl -------------------------------------------------------------------------------- /mr/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/500.ftl -------------------------------------------------------------------------------- /mr/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/brands.ftl -------------------------------------------------------------------------------- /mr/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/firefox/all.ftl -------------------------------------------------------------------------------- /mr/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/footer.ftl -------------------------------------------------------------------------------- /mr/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/fxa_form.ftl -------------------------------------------------------------------------------- /mr/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/mozorg/home.ftl -------------------------------------------------------------------------------- /mr/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/navigation.ftl -------------------------------------------------------------------------------- /mr/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/privacy/faq.ftl -------------------------------------------------------------------------------- /mr/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/mr/ui.ftl -------------------------------------------------------------------------------- /ms/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/404.ftl -------------------------------------------------------------------------------- /ms/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/410.ftl -------------------------------------------------------------------------------- /ms/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/500.ftl -------------------------------------------------------------------------------- /ms/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/brands.ftl -------------------------------------------------------------------------------- /ms/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/firefox/all.ftl -------------------------------------------------------------------------------- /ms/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/firefox/faq.ftl -------------------------------------------------------------------------------- /ms/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/footer.ftl -------------------------------------------------------------------------------- /ms/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/fxa_form.ftl -------------------------------------------------------------------------------- /ms/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/mozorg/home.ftl -------------------------------------------------------------------------------- /ms/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/navigation.ftl -------------------------------------------------------------------------------- /ms/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/privacy/faq.ftl -------------------------------------------------------------------------------- /ms/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ms/ui.ftl -------------------------------------------------------------------------------- /my/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/404.ftl -------------------------------------------------------------------------------- /my/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/500.ftl -------------------------------------------------------------------------------- /my/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/brands.ftl -------------------------------------------------------------------------------- /my/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/firefox/all.ftl -------------------------------------------------------------------------------- /my/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/footer.ftl -------------------------------------------------------------------------------- /my/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/fxa_form.ftl -------------------------------------------------------------------------------- /my/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/mozorg/home.ftl -------------------------------------------------------------------------------- /my/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/navigation.ftl -------------------------------------------------------------------------------- /my/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/privacy/faq.ftl -------------------------------------------------------------------------------- /my/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/my/ui.ftl -------------------------------------------------------------------------------- /nb-NO/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nb-NO/404.ftl -------------------------------------------------------------------------------- /nb-NO/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nb-NO/410.ftl -------------------------------------------------------------------------------- /nb-NO/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nb-NO/500.ftl -------------------------------------------------------------------------------- /nb-NO/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nb-NO/brands.ftl -------------------------------------------------------------------------------- /nb-NO/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nb-NO/footer.ftl -------------------------------------------------------------------------------- /nb-NO/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nb-NO/fxa_form.ftl -------------------------------------------------------------------------------- /nb-NO/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nb-NO/ui.ftl -------------------------------------------------------------------------------- /ne-NP/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ne-NP/404.ftl -------------------------------------------------------------------------------- /ne-NP/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ne-NP/500.ftl -------------------------------------------------------------------------------- /ne-NP/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ne-NP/brands.ftl -------------------------------------------------------------------------------- /ne-NP/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ne-NP/footer.ftl -------------------------------------------------------------------------------- /ne-NP/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ne-NP/ui.ftl -------------------------------------------------------------------------------- /nl/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/404.ftl -------------------------------------------------------------------------------- /nl/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/410.ftl -------------------------------------------------------------------------------- /nl/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/500.ftl -------------------------------------------------------------------------------- /nl/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/brands.ftl -------------------------------------------------------------------------------- /nl/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/firefox/all.ftl -------------------------------------------------------------------------------- /nl/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/firefox/faq.ftl -------------------------------------------------------------------------------- /nl/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/footer.ftl -------------------------------------------------------------------------------- /nl/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/fxa_form.ftl -------------------------------------------------------------------------------- /nl/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/mozorg/home.ftl -------------------------------------------------------------------------------- /nl/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/navigation.ftl -------------------------------------------------------------------------------- /nl/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/privacy/faq.ftl -------------------------------------------------------------------------------- /nl/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nl/ui.ftl -------------------------------------------------------------------------------- /nn-NO/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nn-NO/404.ftl -------------------------------------------------------------------------------- /nn-NO/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nn-NO/410.ftl -------------------------------------------------------------------------------- /nn-NO/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nn-NO/500.ftl -------------------------------------------------------------------------------- /nn-NO/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nn-NO/brands.ftl -------------------------------------------------------------------------------- /nn-NO/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nn-NO/footer.ftl -------------------------------------------------------------------------------- /nn-NO/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nn-NO/fxa_form.ftl -------------------------------------------------------------------------------- /nn-NO/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/nn-NO/ui.ftl -------------------------------------------------------------------------------- /oc/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/404.ftl -------------------------------------------------------------------------------- /oc/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/500.ftl -------------------------------------------------------------------------------- /oc/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/brands.ftl -------------------------------------------------------------------------------- /oc/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/firefox/all.ftl -------------------------------------------------------------------------------- /oc/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/footer.ftl -------------------------------------------------------------------------------- /oc/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/fxa_form.ftl -------------------------------------------------------------------------------- /oc/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/mozorg/home.ftl -------------------------------------------------------------------------------- /oc/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/navigation.ftl -------------------------------------------------------------------------------- /oc/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/oc/ui.ftl -------------------------------------------------------------------------------- /pa-IN/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pa-IN/404.ftl -------------------------------------------------------------------------------- /pa-IN/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pa-IN/410.ftl -------------------------------------------------------------------------------- /pa-IN/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pa-IN/500.ftl -------------------------------------------------------------------------------- /pa-IN/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pa-IN/brands.ftl -------------------------------------------------------------------------------- /pa-IN/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pa-IN/footer.ftl -------------------------------------------------------------------------------- /pa-IN/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pa-IN/fxa_form.ftl -------------------------------------------------------------------------------- /pa-IN/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pa-IN/ui.ftl -------------------------------------------------------------------------------- /pl/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/404.ftl -------------------------------------------------------------------------------- /pl/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/410.ftl -------------------------------------------------------------------------------- /pl/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/500.ftl -------------------------------------------------------------------------------- /pl/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/brands.ftl -------------------------------------------------------------------------------- /pl/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/firefox/all.ftl -------------------------------------------------------------------------------- /pl/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/firefox/faq.ftl -------------------------------------------------------------------------------- /pl/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/footer.ftl -------------------------------------------------------------------------------- /pl/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/fxa_form.ftl -------------------------------------------------------------------------------- /pl/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/mozorg/home.ftl -------------------------------------------------------------------------------- /pl/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/navigation.ftl -------------------------------------------------------------------------------- /pl/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/privacy/faq.ftl -------------------------------------------------------------------------------- /pl/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pl/ui.ftl -------------------------------------------------------------------------------- /pt-BR/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-BR/404.ftl -------------------------------------------------------------------------------- /pt-BR/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-BR/410.ftl -------------------------------------------------------------------------------- /pt-BR/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-BR/500.ftl -------------------------------------------------------------------------------- /pt-BR/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-BR/brands.ftl -------------------------------------------------------------------------------- /pt-BR/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-BR/footer.ftl -------------------------------------------------------------------------------- /pt-BR/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-BR/fxa_form.ftl -------------------------------------------------------------------------------- /pt-BR/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-BR/ui.ftl -------------------------------------------------------------------------------- /pt-PT/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-PT/404.ftl -------------------------------------------------------------------------------- /pt-PT/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-PT/500.ftl -------------------------------------------------------------------------------- /pt-PT/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-PT/brands.ftl -------------------------------------------------------------------------------- /pt-PT/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-PT/footer.ftl -------------------------------------------------------------------------------- /pt-PT/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-PT/fxa_form.ftl -------------------------------------------------------------------------------- /pt-PT/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/pt-PT/ui.ftl -------------------------------------------------------------------------------- /rm/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/404.ftl -------------------------------------------------------------------------------- /rm/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/500.ftl -------------------------------------------------------------------------------- /rm/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/brands.ftl -------------------------------------------------------------------------------- /rm/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/firefox/all.ftl -------------------------------------------------------------------------------- /rm/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/firefox/faq.ftl -------------------------------------------------------------------------------- /rm/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/footer.ftl -------------------------------------------------------------------------------- /rm/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/fxa_form.ftl -------------------------------------------------------------------------------- /rm/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/mozorg/home.ftl -------------------------------------------------------------------------------- /rm/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/navigation.ftl -------------------------------------------------------------------------------- /rm/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/privacy/faq.ftl -------------------------------------------------------------------------------- /rm/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/rm/ui.ftl -------------------------------------------------------------------------------- /ro/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/404.ftl -------------------------------------------------------------------------------- /ro/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/410.ftl -------------------------------------------------------------------------------- /ro/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/500.ftl -------------------------------------------------------------------------------- /ro/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/brands.ftl -------------------------------------------------------------------------------- /ro/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/firefox/all.ftl -------------------------------------------------------------------------------- /ro/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/firefox/faq.ftl -------------------------------------------------------------------------------- /ro/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/footer.ftl -------------------------------------------------------------------------------- /ro/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/fxa_form.ftl -------------------------------------------------------------------------------- /ro/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/mozorg/home.ftl -------------------------------------------------------------------------------- /ro/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/navigation.ftl -------------------------------------------------------------------------------- /ro/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/privacy/faq.ftl -------------------------------------------------------------------------------- /ro/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ro/ui.ftl -------------------------------------------------------------------------------- /ru/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/404.ftl -------------------------------------------------------------------------------- /ru/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/410.ftl -------------------------------------------------------------------------------- /ru/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/500.ftl -------------------------------------------------------------------------------- /ru/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/brands.ftl -------------------------------------------------------------------------------- /ru/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/firefox/all.ftl -------------------------------------------------------------------------------- /ru/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/firefox/faq.ftl -------------------------------------------------------------------------------- /ru/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/footer.ftl -------------------------------------------------------------------------------- /ru/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/fxa_form.ftl -------------------------------------------------------------------------------- /ru/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/mozorg/home.ftl -------------------------------------------------------------------------------- /ru/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/navigation.ftl -------------------------------------------------------------------------------- /ru/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/privacy/faq.ftl -------------------------------------------------------------------------------- /ru/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ru/ui.ftl -------------------------------------------------------------------------------- /scn/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/scn/404.ftl -------------------------------------------------------------------------------- /scn/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/scn/500.ftl -------------------------------------------------------------------------------- /scn/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/scn/brands.ftl -------------------------------------------------------------------------------- /scn/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/scn/footer.ftl -------------------------------------------------------------------------------- /sco/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sco/404.ftl -------------------------------------------------------------------------------- /sco/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sco/500.ftl -------------------------------------------------------------------------------- /sco/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sco/brands.ftl -------------------------------------------------------------------------------- /sco/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sco/footer.ftl -------------------------------------------------------------------------------- /sco/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sco/fxa_form.ftl -------------------------------------------------------------------------------- /sco/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sco/navigation.ftl -------------------------------------------------------------------------------- /sco/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sco/ui.ftl -------------------------------------------------------------------------------- /si/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/404.ftl -------------------------------------------------------------------------------- /si/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/500.ftl -------------------------------------------------------------------------------- /si/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/brands.ftl -------------------------------------------------------------------------------- /si/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/firefox/all.ftl -------------------------------------------------------------------------------- /si/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/footer.ftl -------------------------------------------------------------------------------- /si/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/fxa_form.ftl -------------------------------------------------------------------------------- /si/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/mozorg/home.ftl -------------------------------------------------------------------------------- /si/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/navigation.ftl -------------------------------------------------------------------------------- /si/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/si/ui.ftl -------------------------------------------------------------------------------- /sk/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/404.ftl -------------------------------------------------------------------------------- /sk/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/410.ftl -------------------------------------------------------------------------------- /sk/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/500.ftl -------------------------------------------------------------------------------- /sk/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/brands.ftl -------------------------------------------------------------------------------- /sk/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/firefox/all.ftl -------------------------------------------------------------------------------- /sk/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/firefox/faq.ftl -------------------------------------------------------------------------------- /sk/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/footer.ftl -------------------------------------------------------------------------------- /sk/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/fxa_form.ftl -------------------------------------------------------------------------------- /sk/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/mozorg/home.ftl -------------------------------------------------------------------------------- /sk/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/navigation.ftl -------------------------------------------------------------------------------- /sk/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/privacy/faq.ftl -------------------------------------------------------------------------------- /sk/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sk/ui.ftl -------------------------------------------------------------------------------- /skr/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/skr/404.ftl -------------------------------------------------------------------------------- /skr/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/skr/500.ftl -------------------------------------------------------------------------------- /skr/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/skr/brands.ftl -------------------------------------------------------------------------------- /skr/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/skr/footer.ftl -------------------------------------------------------------------------------- /skr/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/skr/fxa_form.ftl -------------------------------------------------------------------------------- /skr/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/skr/navigation.ftl -------------------------------------------------------------------------------- /skr/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/skr/ui.ftl -------------------------------------------------------------------------------- /sl/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/404.ftl -------------------------------------------------------------------------------- /sl/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/410.ftl -------------------------------------------------------------------------------- /sl/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/500.ftl -------------------------------------------------------------------------------- /sl/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/brands.ftl -------------------------------------------------------------------------------- /sl/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/firefox/all.ftl -------------------------------------------------------------------------------- /sl/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/firefox/faq.ftl -------------------------------------------------------------------------------- /sl/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/footer.ftl -------------------------------------------------------------------------------- /sl/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/fxa_form.ftl -------------------------------------------------------------------------------- /sl/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/mozorg/home.ftl -------------------------------------------------------------------------------- /sl/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/navigation.ftl -------------------------------------------------------------------------------- /sl/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/privacy/faq.ftl -------------------------------------------------------------------------------- /sl/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sl/ui.ftl -------------------------------------------------------------------------------- /son/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/son/404.ftl -------------------------------------------------------------------------------- /son/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/son/brands.ftl -------------------------------------------------------------------------------- /son/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/son/footer.ftl -------------------------------------------------------------------------------- /son/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/son/navigation.ftl -------------------------------------------------------------------------------- /son/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/son/ui.ftl -------------------------------------------------------------------------------- /sq/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/404.ftl -------------------------------------------------------------------------------- /sq/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/410.ftl -------------------------------------------------------------------------------- /sq/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/500.ftl -------------------------------------------------------------------------------- /sq/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/brands.ftl -------------------------------------------------------------------------------- /sq/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/firefox/all.ftl -------------------------------------------------------------------------------- /sq/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/firefox/faq.ftl -------------------------------------------------------------------------------- /sq/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/footer.ftl -------------------------------------------------------------------------------- /sq/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/fxa_form.ftl -------------------------------------------------------------------------------- /sq/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/mozorg/home.ftl -------------------------------------------------------------------------------- /sq/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/navigation.ftl -------------------------------------------------------------------------------- /sq/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/privacy/faq.ftl -------------------------------------------------------------------------------- /sq/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sq/ui.ftl -------------------------------------------------------------------------------- /sr/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/404.ftl -------------------------------------------------------------------------------- /sr/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/500.ftl -------------------------------------------------------------------------------- /sr/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/brands.ftl -------------------------------------------------------------------------------- /sr/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/firefox/all.ftl -------------------------------------------------------------------------------- /sr/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/firefox/faq.ftl -------------------------------------------------------------------------------- /sr/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/footer.ftl -------------------------------------------------------------------------------- /sr/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/fxa_form.ftl -------------------------------------------------------------------------------- /sr/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/mozorg/home.ftl -------------------------------------------------------------------------------- /sr/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/navigation.ftl -------------------------------------------------------------------------------- /sr/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/privacy/faq.ftl -------------------------------------------------------------------------------- /sr/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sr/ui.ftl -------------------------------------------------------------------------------- /sv-SE/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sv-SE/404.ftl -------------------------------------------------------------------------------- /sv-SE/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sv-SE/410.ftl -------------------------------------------------------------------------------- /sv-SE/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sv-SE/500.ftl -------------------------------------------------------------------------------- /sv-SE/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sv-SE/brands.ftl -------------------------------------------------------------------------------- /sv-SE/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sv-SE/footer.ftl -------------------------------------------------------------------------------- /sv-SE/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sv-SE/fxa_form.ftl -------------------------------------------------------------------------------- /sv-SE/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/sv-SE/ui.ftl -------------------------------------------------------------------------------- /ta/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/404.ftl -------------------------------------------------------------------------------- /ta/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/500.ftl -------------------------------------------------------------------------------- /ta/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/brands.ftl -------------------------------------------------------------------------------- /ta/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/firefox/all.ftl -------------------------------------------------------------------------------- /ta/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/footer.ftl -------------------------------------------------------------------------------- /ta/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/fxa_form.ftl -------------------------------------------------------------------------------- /ta/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/mozorg/home.ftl -------------------------------------------------------------------------------- /ta/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/navigation.ftl -------------------------------------------------------------------------------- /ta/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/privacy/faq.ftl -------------------------------------------------------------------------------- /ta/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ta/ui.ftl -------------------------------------------------------------------------------- /te/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/404.ftl -------------------------------------------------------------------------------- /te/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/500.ftl -------------------------------------------------------------------------------- /te/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/brands.ftl -------------------------------------------------------------------------------- /te/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/firefox/all.ftl -------------------------------------------------------------------------------- /te/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/footer.ftl -------------------------------------------------------------------------------- /te/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/fxa_form.ftl -------------------------------------------------------------------------------- /te/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/mozorg/home.ftl -------------------------------------------------------------------------------- /te/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/navigation.ftl -------------------------------------------------------------------------------- /te/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/privacy/faq.ftl -------------------------------------------------------------------------------- /te/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/te/ui.ftl -------------------------------------------------------------------------------- /tg/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/404.ftl -------------------------------------------------------------------------------- /tg/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/410.ftl -------------------------------------------------------------------------------- /tg/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/500.ftl -------------------------------------------------------------------------------- /tg/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/brands.ftl -------------------------------------------------------------------------------- /tg/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/firefox/all.ftl -------------------------------------------------------------------------------- /tg/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/firefox/faq.ftl -------------------------------------------------------------------------------- /tg/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/footer.ftl -------------------------------------------------------------------------------- /tg/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/fxa_form.ftl -------------------------------------------------------------------------------- /tg/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/mozorg/home.ftl -------------------------------------------------------------------------------- /tg/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/navigation.ftl -------------------------------------------------------------------------------- /tg/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/privacy/faq.ftl -------------------------------------------------------------------------------- /tg/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tg/ui.ftl -------------------------------------------------------------------------------- /th/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/404.ftl -------------------------------------------------------------------------------- /th/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/500.ftl -------------------------------------------------------------------------------- /th/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/brands.ftl -------------------------------------------------------------------------------- /th/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/firefox/all.ftl -------------------------------------------------------------------------------- /th/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/firefox/faq.ftl -------------------------------------------------------------------------------- /th/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/footer.ftl -------------------------------------------------------------------------------- /th/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/fxa_form.ftl -------------------------------------------------------------------------------- /th/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/mozorg/home.ftl -------------------------------------------------------------------------------- /th/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/navigation.ftl -------------------------------------------------------------------------------- /th/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/privacy/faq.ftl -------------------------------------------------------------------------------- /th/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/th/ui.ftl -------------------------------------------------------------------------------- /tl/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/404.ftl -------------------------------------------------------------------------------- /tl/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/500.ftl -------------------------------------------------------------------------------- /tl/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/brands.ftl -------------------------------------------------------------------------------- /tl/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/firefox/all.ftl -------------------------------------------------------------------------------- /tl/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/firefox/faq.ftl -------------------------------------------------------------------------------- /tl/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/footer.ftl -------------------------------------------------------------------------------- /tl/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/fxa_form.ftl -------------------------------------------------------------------------------- /tl/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/mozorg/home.ftl -------------------------------------------------------------------------------- /tl/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/navigation.ftl -------------------------------------------------------------------------------- /tl/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/privacy/faq.ftl -------------------------------------------------------------------------------- /tl/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tl/ui.ftl -------------------------------------------------------------------------------- /tr/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/404.ftl -------------------------------------------------------------------------------- /tr/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/410.ftl -------------------------------------------------------------------------------- /tr/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/500.ftl -------------------------------------------------------------------------------- /tr/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/brands.ftl -------------------------------------------------------------------------------- /tr/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/firefox/all.ftl -------------------------------------------------------------------------------- /tr/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/firefox/faq.ftl -------------------------------------------------------------------------------- /tr/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/footer.ftl -------------------------------------------------------------------------------- /tr/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/fxa_form.ftl -------------------------------------------------------------------------------- /tr/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/mozorg/home.ftl -------------------------------------------------------------------------------- /tr/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/navigation.ftl -------------------------------------------------------------------------------- /tr/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/privacy/faq.ftl -------------------------------------------------------------------------------- /tr/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/tr/ui.ftl -------------------------------------------------------------------------------- /trs/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/404.ftl -------------------------------------------------------------------------------- /trs/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/410.ftl -------------------------------------------------------------------------------- /trs/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/500.ftl -------------------------------------------------------------------------------- /trs/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/brands.ftl -------------------------------------------------------------------------------- /trs/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/footer.ftl -------------------------------------------------------------------------------- /trs/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/fxa_form.ftl -------------------------------------------------------------------------------- /trs/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/navigation.ftl -------------------------------------------------------------------------------- /trs/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/trs/ui.ftl -------------------------------------------------------------------------------- /uk/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/404.ftl -------------------------------------------------------------------------------- /uk/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/500.ftl -------------------------------------------------------------------------------- /uk/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/brands.ftl -------------------------------------------------------------------------------- /uk/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/firefox/all.ftl -------------------------------------------------------------------------------- /uk/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/firefox/faq.ftl -------------------------------------------------------------------------------- /uk/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/footer.ftl -------------------------------------------------------------------------------- /uk/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/fxa_form.ftl -------------------------------------------------------------------------------- /uk/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/mozorg/home.ftl -------------------------------------------------------------------------------- /uk/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/navigation.ftl -------------------------------------------------------------------------------- /uk/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/privacy/faq.ftl -------------------------------------------------------------------------------- /uk/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uk/ui.ftl -------------------------------------------------------------------------------- /ur/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/404.ftl -------------------------------------------------------------------------------- /ur/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/500.ftl -------------------------------------------------------------------------------- /ur/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/brands.ftl -------------------------------------------------------------------------------- /ur/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/firefox/all.ftl -------------------------------------------------------------------------------- /ur/firefox/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/firefox/faq.ftl -------------------------------------------------------------------------------- /ur/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/footer.ftl -------------------------------------------------------------------------------- /ur/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/fxa_form.ftl -------------------------------------------------------------------------------- /ur/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/mozorg/home.ftl -------------------------------------------------------------------------------- /ur/navigation.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/navigation.ftl -------------------------------------------------------------------------------- /ur/privacy/faq.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/privacy/faq.ftl -------------------------------------------------------------------------------- /ur/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/ur/ui.ftl -------------------------------------------------------------------------------- /uz/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uz/404.ftl -------------------------------------------------------------------------------- /uz/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uz/brands.ftl -------------------------------------------------------------------------------- /uz/firefox/all.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uz/firefox/all.ftl -------------------------------------------------------------------------------- /uz/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uz/footer.ftl -------------------------------------------------------------------------------- /uz/mozorg/home.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uz/mozorg/home.ftl -------------------------------------------------------------------------------- /uz/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/uz/ui.ftl -------------------------------------------------------------------------------- /vi/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/vi/404.ftl -------------------------------------------------------------------------------- /vi/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/vi/410.ftl -------------------------------------------------------------------------------- /vi/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/vi/500.ftl -------------------------------------------------------------------------------- /vi/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/vi/brands.ftl -------------------------------------------------------------------------------- /vi/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/vi/footer.ftl -------------------------------------------------------------------------------- /vi/fxa_form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/vi/fxa_form.ftl -------------------------------------------------------------------------------- /vi/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/vi/ui.ftl -------------------------------------------------------------------------------- /wo/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/wo/brands.ftl -------------------------------------------------------------------------------- /wo/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/wo/footer.ftl -------------------------------------------------------------------------------- /wo/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/wo/ui.ftl -------------------------------------------------------------------------------- /xh/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/xh/brands.ftl -------------------------------------------------------------------------------- /xh/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/xh/footer.ftl -------------------------------------------------------------------------------- /xh/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/xh/ui.ftl -------------------------------------------------------------------------------- /zam/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zam/404.ftl -------------------------------------------------------------------------------- /zam/brands.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zam/brands.ftl -------------------------------------------------------------------------------- /zam/footer.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zam/footer.ftl -------------------------------------------------------------------------------- /zam/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zam/ui.ftl -------------------------------------------------------------------------------- /zh-CN/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-CN/404.ftl -------------------------------------------------------------------------------- /zh-CN/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-CN/410.ftl -------------------------------------------------------------------------------- /zh-CN/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-CN/500.ftl -------------------------------------------------------------------------------- /zh-CN/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-CN/ui.ftl -------------------------------------------------------------------------------- /zh-TW/404.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-TW/404.ftl -------------------------------------------------------------------------------- /zh-TW/410.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-TW/410.ftl -------------------------------------------------------------------------------- /zh-TW/500.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-TW/500.ftl -------------------------------------------------------------------------------- /zh-TW/ui.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-l10n/www-l10n/HEAD/zh-TW/ui.ftl --------------------------------------------------------------------------------