Source code

Revision control

Copy as Markdown

Other Tools

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
JAR_MANIFESTS += ["jar.mn"]
# Use the 'es-ES' badge for all Spanish locales, mirroring Bedrock.
_android_marketplace_locales = (
"af ar az be bg bn-BD bn-IN ca cs da de el es-ES et eu fa fi fr gl gu-IN "
"he hi-IN hr hu hy-AM id is it ja ka kk km kn ko lo lt lv mk ml mr ms my "
"nb-NO ne-NP nl nn-NO pa-IN pl pt-BR pt-PT ro ru si sk sl sq sr sv-SE sw "
"ta te th tr uk ur uz vi zh-CN zh-TW zu"
).split()
_ios_marketplace_locales = (
"ar az bg cs da de el es-ES et fi fr he hu id it ja ko lt lv ms mt nb-NO "
"nl nn-NO pl pt-BR pt-PT ro ru sk sl sv-SE th tr vi zh-CN zh-TW"
).split()
LOCALE_PP_DEFINES = {
"ANDROID_MARKETPLACE_AB_CD": {
"es*": "es-ES",
**{loc: loc for loc in _android_marketplace_locales},
},
"IOS_MARKETPLACE_AB_CD": {
"es*": "es-ES",
**{loc: loc for loc in _ios_marketplace_locales},
},
}