> For the complete documentation index, see [llms.txt](https://docs.arius-scripts.com/site/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arius-scripts.com/site/documentation/resources/multicharacter/configuration/localization.md).

# Localization

Translations are stored in `locales/translations/`. Currently supported:

| Code    | Language            |
| ------- | ------------------- |
| `en`    | English             |
| `es`    | Spanish             |
| `fr`    | French              |
| `it`    | Italian             |
| `pt-br` | Portuguese (Brazil) |

#### Set Language

```lua
Config.Language = "en"   -- change to your preferred locale code
```

#### Adding a Custom Translation

1. Copy `locales/translations/en.lua` to a new file, e.g., `locales/translations/de.lua`
2. Translate all values
3. Set `Config.Language = "de"`
