# shop_locale
A language in a store.
To learn how to offer localization options in your theme, refer to [Support multiple currencies and languages](/themes/internationalization/multiple-currencies-languages).
## Properties
### endonym_name
**Type:** string
The name of the locale in the locale itself.
### iso_code
**Type:** string
The ISO code of the locale in [IETF language tag format](https://en.wikipedia.org/wiki/IETF_language_tag).
### name
**Type:** string
The name of the locale in the store's primary locale.
### primary
**Type:** boolean
Returns `true` if the locale is the store's primary locale. Returns `false` if not.
### root_url
**Type:** string
The relative root URL of the locale.
## Example
```json
{
"endonym_name": "English",
"iso_code": "en",
"name": "English",
"primary": true,
"root_url": "/"
}
```