This repository hosts the localization for the Focus by Firefox project for iOS.
The application code with build instructions can be found at https://github.com/mozilla-mobile/firefox-ios
Localization only happens via Pontoon.
If your PR touches many files (such as string exports that need to be localized), it will get stale very quickly because many contributors add to these files. Please make sure there is someone around to merge your PR in a timely manner, or expect to need to update your PR to resolve conflicts.
Automation is used to extract strings from the code repository, and expose them to all other locales.
- Strings are extracted and saved in the
en-USXLIFF file (the reference). - A source-only version (no translations) is written to
templates, which is what Pontoon reads to keep every locale in sync. - Existing translations are then updated in place: a translation is removed when its source string no longer matches the reference. This step only invalidates stale translations; adding and removing strings is left to Pontoon.
By default, a translation is kept only if all of these match against the reference:
idattribute oftrans-unit.originalattribute offile.sourcetext.
As a consequence, the default update removes a translation if:
- The source text was changed.
- The string was moved from one file to another.
This is not ideal when the change in the source text is trivial, or the string move is caused by code refactoring.
It’s possible to invoke automation manually, and use a different matching criterion:
nofilekeeps translations if the ID and source text match, ignoring the file. This is useful to minimize the impact of code refactoring.matchidkeeps translations if the ID matches, ignoring the file and source text. This is useful for source changes that don’t require invalidating existing translations.
When opening a pull request that touches the en-US folder, a GitHub workflow is used to check for common issues in the reference strings (misused quotes or ellipsis, hard-coded brand names). It's possible to add exceptions in this JSON file.
When opening a pull request that touches localized files, a GitHub workflow checks that each locale declares the expected target-language. This is a safety net for syncs that leave a locale with the wrong or missing language code. A few locales use a language code that differs from their folder name; the mapping lives in locale_config.py.
Brand new locales might not be correctly imported in the product. This workflow tries to identify missing locales looking at .lproj folders in the product repository.
Translations in this repository are available under the terms of the Mozilla Public License v2.0.