# Per player localization

In every one of your messages files, you can add a new section, named `custom` (which is already there if you do a fresh install:

```yml
custom:
  something: Hello world
  npc:
    quests: <white>Quests
```

These values are available in the AuroraQuests menus and other configs like quest complete/levelup messages. You can reference them as `{{something}}` or `{{npc.quests}}`. Notice the dot (**.**) notation for nested structures.

#### To enable per player localiaztion:

First, follow the steps, to enable it in Aurora:&#x20;

{% content-ref url="/spaces/1mRm2d218gpt3uXzQ0ZN/pages/0NS1gwq6HTz6jG0u7dWy" %}
[Per player localization](/aurora/per-player-localization.md)
{% endcontent-ref %}

then in your config.yml you have to:

* set `language` to your preferred default
* set `per-player-locale` to `true`

If you want to use these placeholders in menus, there is a handy utility in AuroraLib which lets you wrap lines by word count in any of the item lore options:

```yaml
some-menu-item:
  name: "{{my-item-name-language-placeholder}}"
  slot: 1
  lore:
    - "[wrap:25] {{my-item-lore-language-placeholder}}"
```

You can nest plugin placeholders like `{name}` , papi placeholders like `%player_name%` and language placeholders like `{{language-placeholder}}` in any depth.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.auroramc.gg/auroraquests/per-player-localization.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
