> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Economy v2 Localization

> Localize PlayFab Economy v2 catalog items using locale keys for Title, Description, and Keywords fields across Game Manager and Catalog APIs.

<Info>
  Economy v2 is now Generally Available. For support and feedback, go to the [PlayFab Forum](https://community.playfab.com).
</Info>

Simple localization is supported by using locale keys in your *Title*, *Description*, and *Keywords* fields for Catalog Items. Both Game Manager and all Catalog Item API calls expose these fields.

<Tip>
  Setting up player accounts for a third party translation services to use with the API can save time during development. Set the Economy v2 Settings policies to allow item updates for that player ID.
</Tip>

## Localization Example

```json theme={null}
{
    "Title": {
        "NEUTRAL": "My Amazing Fire Weapon",
        "en-US": "My Lit Lit Weapon",
        "en-GB": "My Brilliant Flaming Weapon",
        "fr-FR": "Mon Arme Enflammé Extraordinaire",
        "zh-CN": "我的神奇火之武器",
        "ja-JP": "私の驚くべき炎の武器",
        "pt-PT": "Minha Arma de Fogo Incrível",
        "ru-RU": "Мое потрясающий огненное оружие",
        "ko-KR": "내 놀라운 화재 무기",
        "de-DE": "Meine Uberfeuerklingenwaffen",
        "it-IT": "Mie Armi di Fuoco Incredibile"
    },
    "Keywords": {
        "NEUTRAL": { "Values": [ "fire","weapon" ] },
        "en-US": { "Values": [ "fire","weapon" ] },
        "fr-FR": { "Values": [ "enflammé", "arme" ] },
        "de-DE": { "Values":[ "feuer","klingenwaffen" ] }
    }
}
```

## Localization in Search

Our [SearchItems API](https://learn.microsoft.com/en-us/rest/api/playfab/economy/catalog/search-items) now accepts a new **Language** parameter. Setting a language filter changes the language analyzer(s) being used to the languages provided.

An example `SearchItems` request:

```json theme={null}
{
  "Search": "Pirates",
  "Filter": "Tags/any(t:t eq 'desert') and ContentType eq 'map'",
  "OrderBy": "lastModifiedDate asc",
  "ContinuationToken": "abc=",
  "Language": "en-GB"
} 
```

<Note>
  For more information about searching, see [Search](/services/playfab/economy-monetization/economy-v2/catalog/search).
</Note>

## Supported Locale Codes

The following list contains all the locale codes that are supported based on ISO-631-1.

| A-I   | J-Z   |
| ----- | ----- |
| ar-SA | ja-JP |
| bg-BG | ko-KR |
| cs-CZ | nb-NO |
| da-DK | nl-NL |
| de-DE | pl-PL |
| el-GR | pt-BR |
| en-GB | pt-PT |
| en-US | ro-RO |
| es-ES | ru-RU |
| es-MX | sk-SK |
| fi-FI | sv-SE |
| fr-CA | th-TH |
| fr-FR | tr-TR |
| he-IL | uk-UA |
| hi-IN | zh-CN |
| hu-HU | zh-TW |
| id-ID |       |
| it-IT |       |


## Related topics

- [Catalog Overview](/services/playfab/economy-monetization/economy-v2/catalog/catalog-overview.md)
- [Economy v2 Catalog Content Types, Tags, & Properties](/services/playfab/economy-monetization/economy-v2/catalog/content-types-tags-and-properties.md)
- [Economy v2 settings overview](/services/playfab/economy-monetization/economy-v2/settings.md)
- [Economy V2 Limits](/services/playfab/economy-monetization/economy-v2/limits.md)
- [Economy v2 overview](/services/playfab/economy-monetization/economy-v2/overview.md)
