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

# Localization

`"languages"` in your `docs.json` can be leveraged to partition your navigation into different languages.

We currently support localization in the following languages:

* Arabic (`ar`)
* Chinese (`cn` or `zh`, `zh-Hans` for Simplified and `zh-Hant` for Traditional)
* English (`en`)
* French (`fr`)
* German (`de`)
* Indonesian (`id`)
* Italian (`it`)
* Japanese (`jp` or `ja`)
* Korean (`ko`)
* Portuguese (`pt`)
* Portuguese (Brazil) (`pt-BR`)
* Russian (`ru`)
* Spanish (`es`)
* Turkish (`tr`)

```json docs.json theme={null}
{
  "navigation": {
    "languages": [
      {
        "language": "en",
        "groups": [
          {
            "group": "Getting Started",
            "pages": ["en/index"]
          }
        ]
      },
      {
        "language": "es",
        "groups": [
          {
            "group": "Getting Started",
            "pages": ["es/overview", "es/quickstart", "es/development"]
          }
        ]
      }
    ]
  }
}
```
