chore: Migrate l10n repo to the main repository, p=#9662, c=l10n

This commit is contained in:
mr. m
2025-07-28 14:26:41 +02:00
committed by GitHub
parent e5d4e91e61
commit 36a84261b3
366 changed files with 18782 additions and 18 deletions

View File

@@ -31,7 +31,7 @@ def copy_browser_locales(lang_id: str):
os.remove(os.path.join(root, file))
# Copy files from the source directory
source_path = "./l10n/en-US/browser/"
source_path = "./locales/en-US/browser/"
copy_files(source_path, lang_path)
return
@@ -39,7 +39,7 @@ def copy_browser_locales(lang_id: str):
if os.path.exists(lang_path):
shutil.rmtree(lang_path) # Remove existing directory
source_path = f"./l10n/{lang_id}/"
source_path = f"./locales/{lang_id}/"
copy_files(source_path, lang_path)