summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2013-02-11 15:04:51 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-02-11 15:13:44 +0100
commite815a69fcb28e3e1e4e89496ab42bc1b4bac4526 (patch)
tree2d041192bdb4defafafd49411b7254415936ecad /android
parent9a6eea02ee3b7ceeaeccbb815b37224077781a41 (diff)
Filter out three-letter locales - aapt breaks there.
See http://stackoverflow.com/questions/10330893/android-resources-for-languages-with-only-3-letter-codes for some more background. Change-Id: Ib8c62d008239de3f0ba35ebe17f8f6974f28beb1 (cherry picked from commit 63fdfd1eb63c1c1e17d3a62ea23b39bbeabfeae0) Signed-off-by: Miklos Vajna <vmiklos@suse.cz>
Diffstat (limited to 'android')
-rw-r--r--android/sdremote/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/sdremote/Makefile b/android/sdremote/Makefile
index 1049e8d13fc6..3972a065e38b 100644
--- a/android/sdremote/Makefile
+++ b/android/sdremote/Makefile
@@ -44,7 +44,7 @@ $(foreach lang,$(1),$(call android_translation_rules,$(lang)))
endef
define android_get_langlist
-$(foreach lang,$(filter-out en-US,$(WITH_LANG_LIST)),$(subst -,-r,$(lang)))
+$(foreach lang,$(filter-out en-US sat sid mai ast mni brx dgo qtz nso kok,$(WITH_LANG_LIST)),$(subst -,-r,$(lang)))
endef
$(eval $(call android_translations_rules,$(call android_get_langlist)))