From 7fb5a43b051382efa13f2640568f9d24e6d9d7bd Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Fri, 12 Sep 2025 13:42:20 +0200 Subject: [PATCH 1/4] Revert "Only restrict to en-US" This reverts 18754a8 --- .../firefox/browsers/mobile/ios-summarizer.ftl | 0 springfield/firefox/urls.py | 12 +++++------- 2 files changed, 5 insertions(+), 7 deletions(-) rename l10n/{en-US => en}/firefox/browsers/mobile/ios-summarizer.ftl (100%) diff --git a/l10n/en-US/firefox/browsers/mobile/ios-summarizer.ftl b/l10n/en/firefox/browsers/mobile/ios-summarizer.ftl similarity index 100% rename from l10n/en-US/firefox/browsers/mobile/ios-summarizer.ftl rename to l10n/en/firefox/browsers/mobile/ios-summarizer.ftl diff --git a/springfield/firefox/urls.py b/springfield/firefox/urls.py index 8d59fd71a..b45dca1e3 100644 --- a/springfield/firefox/urls.py +++ b/springfield/firefox/urls.py @@ -110,13 +110,6 @@ page("landing/tech/", "firefox/landing/tech.html", ftl_files="firefox/download/desktop", active_locales="en-GB"), page("landing/education/", "firefox/landing/education.html", ftl_files="firefox/download/desktop", active_locales="en-GB"), page("landing/gaming/", "firefox/landing/gaming.html", ftl_files="firefox/download/desktop", active_locales="en-GB"), - # Issue #444 - US-only iOS landing page - page( - "landing/ios-summarizer/", - "firefox/landing/ios-summarizer.html", - ftl_files=["firefox/browsers/mobile/ios-summarizer", "firefox/browsers/mobile/ios"], - active_locales="en-US", - ), # Issue 487 - Win10 End of Service page( "landing/win-new-features/", @@ -136,6 +129,11 @@ "firefox/landing/kit.html", active_locales=["en-US", "en-GB", "en-CA", "fr", "de"], ), + page( + "landing/ios-summarizer/", + "firefox/landing/ios-summarizer.html", + ftl_files=["firefox/browsers/mobile/ios-summarizer", "firefox/browsers/mobile/ios"], + ), page( "compare/", "firefox/browsers/compare/index.html", From 21d1dd7d6eb5b2f588b53ce423705fe6fdff61f0 Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Mon, 23 Feb 2026 12:16:14 +0100 Subject: [PATCH 2/4] Move ftl outside of wildcard location to configure --- .../{browsers/mobile/ios-summarizer.ftl => summarizer/ios.ftl} | 0 springfield/firefox/urls.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename l10n/en/firefox/{browsers/mobile/ios-summarizer.ftl => summarizer/ios.ftl} (100%) diff --git a/l10n/en/firefox/browsers/mobile/ios-summarizer.ftl b/l10n/en/firefox/summarizer/ios.ftl similarity index 100% rename from l10n/en/firefox/browsers/mobile/ios-summarizer.ftl rename to l10n/en/firefox/summarizer/ios.ftl diff --git a/springfield/firefox/urls.py b/springfield/firefox/urls.py index b45dca1e3..c5e0f9d2f 100644 --- a/springfield/firefox/urls.py +++ b/springfield/firefox/urls.py @@ -132,7 +132,7 @@ page( "landing/ios-summarizer/", "firefox/landing/ios-summarizer.html", - ftl_files=["firefox/browsers/mobile/ios-summarizer", "firefox/browsers/mobile/ios"], + ftl_files=["firefox/summarizer/ios", "firefox/browsers/mobile/ios"], ), page( "compare/", From d22feb4872221170c28077abea007189c83d902f Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Mon, 23 Feb 2026 12:54:41 +0100 Subject: [PATCH 3/4] Subset languages to allow --- l10n/configs/pontoon.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/l10n/configs/pontoon.toml b/l10n/configs/pontoon.toml index 0771ffd0f..e941c0c20 100644 --- a/l10n/configs/pontoon.toml +++ b/l10n/configs/pontoon.toml @@ -129,6 +129,22 @@ locales = [ [[paths]] reference = "en/firefox/set-as-default/**/*.ftl" l10n = "{locale}/firefox/set-as-default/**/*.ftl" +[[paths]] + reference = "en/firefox/summarizer/ios.ftl" + l10n = "{locale}/firefox/summarizer/ios.ftl" + locales = [ + "de", + "en-CA", + "en-GB", + "es-AR", + "es-CL", + "es-ES", + "es-MX", + "fr", + "ja", + "pt-BR", + "pt-PT", + ] [[paths]] reference = "en/newsletter/newsletters.ftl" l10n = "{locale}/newsletter/newsletters.ftl" From 201653149c695283a79a1e6b59e989336ee26bdb Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Sun, 3 May 2026 21:37:22 +0200 Subject: [PATCH 4/4] Reorder to clean up diff --- springfield/firefox/urls.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/springfield/firefox/urls.py b/springfield/firefox/urls.py index c5e0f9d2f..a71a7dc4c 100644 --- a/springfield/firefox/urls.py +++ b/springfield/firefox/urls.py @@ -110,6 +110,12 @@ page("landing/tech/", "firefox/landing/tech.html", ftl_files="firefox/download/desktop", active_locales="en-GB"), page("landing/education/", "firefox/landing/education.html", ftl_files="firefox/download/desktop", active_locales="en-GB"), page("landing/gaming/", "firefox/landing/gaming.html", ftl_files="firefox/download/desktop", active_locales="en-GB"), + # Issue 444 - iOS summarizer landing page + page( + "landing/ios-summarizer/", + "firefox/landing/ios-summarizer.html", + ftl_files=["firefox/summarizer/ios", "firefox/browsers/mobile/ios"], + ), # Issue 487 - Win10 End of Service page( "landing/win-new-features/", @@ -129,11 +135,6 @@ "firefox/landing/kit.html", active_locales=["en-US", "en-GB", "en-CA", "fr", "de"], ), - page( - "landing/ios-summarizer/", - "firefox/landing/ios-summarizer.html", - ftl_files=["firefox/summarizer/ios", "firefox/browsers/mobile/ios"], - ), page( "compare/", "firefox/browsers/compare/index.html",