Fennec is shipped with multi-locale support. Under the Settings menu option, General -> Language -> Browser Language there are tens of languages and locales available. How are these included and shipped?
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
Okay. So, there's a doc for this. Specifically, the mozilla build system clones l10n-central and creates the localization package from there. I haven't look at the logic used for this, yet.
We'll want to clone l10n-central separately, and add the location into .mozconfig-android:
You should find a re-packaged build at ``OBJDIR/dist/``, and arunnable binary in ``OBJDIR/dist/l10n-stage/``.
Running the installers- build target (by default):
The ``installers`` target runs quite a few things for you, including gettingthe repository for the requested locale fromhttps://hg.mozilla.org/l10n-central/. It will clone them into``~/.mozbuild/l10n-central``.
Multilocale packages are created using:
export MOZ_CHROME_MULTILOCALE="de it zh-TW" for AB_CD in $MOZ_CHROME_MULTILOCALE; do ./mach build chrome-$AB_CD done AB_CD=multi ./mach package
This sounds like the mechanism we eventually want to use for getting rid of our bundle-language-packs-approach. So, we want that for #26465 (moved) as well which makes me think we should keep desktop in mind once we file follow-up bugs to implement the things we learned from the investigation in this ticket.
FWIW: I plan to work on the repack idea for desktop in #27466 (moved) and might think about how to integrate the multi-locale support for Tor Browser on Android into our build system while I am at it.
This results in a localized apk. There is an inconsistency when built with #28051 (moved) because Orbot doesn't learn about the new locale until later, but we can correct that. Overall, Fennec, torbutton, and Orbot use the correct localized strings.
Okay. comment:7 is correct, but this becomes more complicated with Orbot. When we build a single-locale package, it replaces the localizable strings - meaning each English string that is localized is replaced with the localized string, so the English string is not available within the app. This is good - but it becomes more confusing.
Because all the English strings are substituted with localized strings, the user cannot choose between the localized string and the English strings. This usually wouldn't be a problem, except within Fennec's preferences menu "English (United States)" is always shown. It seems Mozilla thought it important to hard-code "en-US" as an option, even when it is not really available. sigh. But that is relatively easy to fix.
The difficulty comes when Orbot is added into the app. The single-locale re-package process only replaces the Fennec strings, it doesn't touch the Orbot strings, so Orbot uses the system default locale when it starts. This isn't a problem if the user downloaded Tor Browser for the same locale as their system, but if the user has (as an example) en-US as their system default locale but downloads the es-ES localized Tor Browser, then it becomes weird. In this situation, Orbot shows everything in English and Tor Browser shows everything in es-ES. Orbot allows the user switch their locale, but this is confusing.
I think we should add a mechanism within Orbot so it automatically chooses the correct locale when it starts. We can likely add this in the logic when Tor Browser runs Orbot the first time. I prefer having the user control their locale on the Tor Browser-side of the app, rather than the Orbot-side - but others can change my mind :)
I built a multi-locale package, including the 28 locales provided by the desktop alpha builds. It is as simple as the documentation says. The trick is you must do it exactly as the doc says, and don't change the name of the environment variable it says :) (specifically, MOZ_CHROME_MULTILOCALE must be used and set correctly)
Follow the same steps as comment:7, except substitute the last step (./mach build installers-es-ES) with the following three steps:
$ export MOZ_CHROME_MULTILOCALE="ar ca cs da de el es-ES fa fr ga-IE he hu id is it ja ka ko nb-NO nl pl pt-BR ru sv-SE tr vi zh-CN zh-TW"$ for AB_CD in $MOZ_CHROME_MULTILOCALE; do ./mach build chrome-$AB_CD;done$ AB_CD=multi ./mach package
The resulting apk is ~48MB, including Orbot and the addons. The filename contains en-US:
$ # before$ du -sh ~/tor-browser/obj-x86-linux-android/dist/fennec-60.3.0.en-US.android-i686.apk46M /home/android/tor-browser/obj-x86-linux-android/dist/fennec-60.3.0.en-US.android-i686.apk$ # after$ du -sh ~/tor-browser/obj-x86-linux-android/dist/fennec-60.3.0.en-US.android-i686.apk48M /home/android/tor-browser/obj-x86-linux-android/dist/fennec-60.3.0.en-US.android-i686.apk
Comparing the mutli-locale package with the single-locale package, the multi-locale package provides a better user experience. Orbot and Fennec use the system default locale on first-run, so they should use the same locale when the user opens the app. When a different locale is chosen within Fennec, Orbot uses the new locale, too. It seems like this mitigates the major problems in the single-locale package.
Looks mostly good, thanks. One thing we should fix:
{{{
exite_error("Error reading $file", 2) unless defined $json_text;
}}}
There is no exite_error function.
Looks mostly good, thanks. One thing we should fix:
{{{
exite_error("Error reading $file", 2) unless defined $json_text;
}}}
There is no exite_error function.
Compared to bug_26843_v5 it is rebased on the latest master and contains an indication in the bundle name that the .apk is actually not a single-locale one, using "multi" as Mozilla does.
Compared to bug_26843_v5 it is rebased on the latest master and contains an indication in the bundle name that the .apk is actually not a single-locale one, using "multi" as Mozilla does.
It seems that when we are running AB_CD=multi ./mach package, the variable MOZ_CHROME_MULTILOCALE contains all the locales we want. However, when we run ./mach build chrome-[% lang %], only the current and previous locales are included in MOZ_CHROME_MULTILOCALE. Is ./mach build chrome-[% lang %] ignoring the variable MOZ_CHROME_MULTILOCALE (and in this case it doesn't matter if it doesn't contain all the locales), or should we add all the locales before running the first ./mach build chrome-[% lang %]?
We could use this line to set all the locales in MOZ_CHROME_MULTILOCALE:
An other minor thing: I think it would be better to extract the locales in a sub-directory (such as /var/tmp/dist/locales) instead of directly in /var/tmp/dist.
Trac: Status: needs_review to needs_revision Keywords: TorBrowserTeam201812R deleted, TorBrowserTeam201812 added