Forcing the settings apk to be built with the zz_ZZ pseudolocale.

This will enable Settings to show the effects of the zz_ZZ pseudolocale when selected in the LocalePicker.

Bug #8556677

Change-Id: I68ffc81454865dec94a3c1460019d1efce00ea49
This commit is contained in:
Benjamin Poiesz
2013-04-04 16:14:13 -07:00
parent 3c3fa0ccb8
commit cbde502ebb
3 changed files with 23 additions and 1 deletions

View File

@@ -238,7 +238,16 @@ public class InputMethodAndLanguageSettings extends SettingsPreferenceFragment
// and want to pretend that the language is valid for all locales.
// We need a way to support languages that aren't tied to a particular
// locale instead of hiding the locale qualifier.
if (hasOnlyOneLanguageInstance(language,
if (language.equals("zz")) {
String country = conf.locale.getCountry();
if (country.equals("ZZ")) {
localeString = "[Developer] Accented English (zz_ZZ)";
} else if (country.equals("ZY")) {
localeString = "[Developer] Fake Bi-Directional (zz_ZY)";
} else {
localeString = "";
}
} else if (hasOnlyOneLanguageInstance(language,
Resources.getSystem().getAssets().getLocales())) {
localeString = conf.locale.getDisplayLanguage(conf.locale);
} else {