# Locales

## Change locale

To change the locales of this resource, follow these simple steps:

1. Go to `configs/sh_config.lua`.
2. Find the line:

```lua
CONFIG.Locale = 'en'
```

1. Replace 'en' with one of the locales listed in the locales directory.

## Create your own locale

If you want to create your own locales, follow these steps:

1. Duplicate one of the existing locale files.
2. Rename the duplicated file to your desired locale, e.g., `your_locale_here.lua`.
3. Open the duplicated file and modify its contents to match your desired locale.

**Example:**

```lua
Locales['your_locale_here'] = {
    -- Write all your text here in your desired locale.
}
```

That's it! By following these steps, you can easily change or create your own locales for the resource.


---

# 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://documentation.rcore.cz/paid-resources/rcore_dispatch/locales.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.
