# Lenguage

Go to `config/config.lua` and put your according lenguage

{% code title="silio\_sanctions/config/config.lua" %}

```lua
-- 'es' | 'en' | 'de' | 'fr' | 'it' | 'pt' -> choose the best lenguage for you or add your own in locales folder and set it here
Config.Locale = 'en'
```

{% endcode %}

If you need to create a new lenguage, go to `locales` and duplicate an existing locale file like `locales/en.lua` and change the `locales['en']` for your locales initials name for example `locales['nl']`  and change the code after the equal sign.

{% code title="silio\_sanctions/locales/en.lua" %}

```lua
locales = locales or {}

locales['en'] = {

    backend = {
        ['notauthorized']       = 'You do not have permission to use this command.',
        ['jailed']              = 'You have been sent to jail for: %s',
        -- More locales
    },

    ui = {
        ['title']              = 'SANCTIONS',
        ['save']               = 'Save',
        -- More locales
    },
}

```

{% endcode %}

Then change you Config.Locale for your locale initials name, following our example `locales['nl']`


---

# 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://silio-scripts.gitbook.io/silio-scripts/scripts/silio-sanctions/configuration/lenguage.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.
