list_locales

List all available locales for App Store and Play Store.

Description

This tool returns a list of all supported locales for each app store, including locale codes, display names, and whether they're currently enabled for your project.

Parameters

ParameterTypeRequiredDescription
storestringNoFilter by store: appstore, playstore, or both
projectIdstringNoShow enabled status for project

Example Usage

Ask Claude about available locales:

Natural Language Promptstext
"What locales are available for the App Store?"
"List all supported languages for Google Play"
"Which locales are enabled for my project?"

Response

{
"success": true,
"locales": {
"appstore": [
{ "code": "en-US", "name": "English (US)", "enabled": true },
{ "code": "en-GB", "name": "English (UK)", "enabled": true },
{ "code": "es-ES", "name": "Spanish (Spain)", "enabled": true },
{ "code": "es-MX", "name": "Spanish (Mexico)", "enabled": false },
{ "code": "fr-FR", "name": "French", "enabled": true },
{ "code": "de-DE", "name": "German", "enabled": true },
{ "code": "ja", "name": "Japanese", "enabled": false },
{ "code": "zh-Hans", "name": "Chinese (Simplified)", "enabled": false },
{ "code": "zh-Hant", "name": "Chinese (Traditional)", "enabled": false }
// ... 40+ more locales
],
"playstore": [
{ "code": "en-US", "name": "English (US)", "enabled": true },
{ "code": "es-ES", "name": "Spanish (Spain)", "enabled": true },
{ "code": "fr-FR", "name": "French", "enabled": true }
// ... more locales
]
},
"summary": {
"appstore": { "total": 40, "enabled": 5 },
"playstore": { "total": 77, "enabled": 5 }
}
}
CodeLanguageApp StorePlay Store
en-USEnglish (US)SupportedSupported
es-ESSpanish (Spain)SupportedSupported
fr-FRFrenchSupportedSupported
de-DEGermanSupportedSupported
jaJapaneseSupportedSupported
zh-HansChinese (Simplified)SupportedSupported