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

# Multi-Language Support

> Localize MythicLabs plugins for your community

All player-facing messages in MythicLabs plugins are stored in editable language files, so you can translate - or simply restyle - every message your players see.

## Supported languages out of the box

| Code | Language          |
| ---- | ----------------- |
| `en` | English (default) |
| `hu` | Hungarian         |

<Note>
  Missing your language? Machine-translated files ship as a starting point - community-verified translations are always welcome via [Discord](https://dc.mythiclabs.eu).
</Note>

## Setting the active language

Set the locale in `config.yml`:

```yaml theme={null}
language: en
```

Or let the plugin follow each player's client language automatically:

```yaml theme={null}
language: per-player
```

## Editing messages

Every plugin generates a `lang/<code>.yml` file with all of its messages as editable keys:

```yaml theme={null}
# lang/en.yml
prefix: "&#b84dff&lMLVouchers &8» &r"
reload-success: "&#4ade80Configuration reloaded in &f%time%ms&#4ade80."
no-permission: "&#ff6b6bYou don't have permission to use this command."
```

Messages support standard color codes and MiniMessage formatting, along with placeholders like `{prefix}` and `{player}`.

<Tip>
  Edit a language file while the server is running, then run `/mythic reload` to apply your changes - no restart required.
</Tip>
