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.
This commit is contained in:
Jonas Jenwald 2025-05-08 12:34:01 +02:00
parent 6f052312d6
commit feea4007b5

View File

@ -31,7 +31,7 @@ async function downloadLanguageCodes() {
console.log("Downloading language codes...\n"); console.log("Downloading language codes...\n");
const ALL_LOCALES = 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); const response = await fetch(ALL_LOCALES);
if (!response.ok) { if (!response.ok) {