> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_dispatch/locales.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.
