From feea4007b579adf08f5ff909497f71e74da1bc4a Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Thu, 8 May 2025 12:34:01 +0200 Subject: [PATCH] Update the Firefox repository used in `external/importL10n/locales.mjs` The https://github.com/mozilla/gecko-dev repository has been deprecated in favour of https://github.com/mozilla-firefox/firefox, hence we should tweak the l10n-update script accordingly. --- external/importL10n/locales.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/importL10n/locales.mjs b/external/importL10n/locales.mjs index 0809d7ea8..327e67ee5 100644 --- a/external/importL10n/locales.mjs +++ b/external/importL10n/locales.mjs @@ -31,7 +31,7 @@ async function downloadLanguageCodes() { console.log("Downloading language codes...\n"); const ALL_LOCALES = - "https://raw.githubusercontent.com/mozilla/gecko-dev/master/browser/locales/all-locales"; + "https://raw.githubusercontent.com/mozilla-firefox/firefox/main/browser/locales/all-locales"; const response = await fetch(ALL_LOCALES); if (!response.ok) {