> For the complete documentation index, see [llms.txt](https://corem.gitbook.io/corem/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://corem.gitbook.io/corem/crm-core/change-language.md).

# Change Language

All CoreM scripts use the **crm-core language system**, which means you only need to set the language **once**, and it will automatically apply to every CoreM resource you have installed.

To change the language for all CoreM scripts, add the following line to your **server.cfg**:

```
setr crm-core:language "en"
```

Replace `"en"` with any supported language code.

***

### Language Supported

| Code | Language    |
| ---- | ----------- |
| en   | English.    |
| fr   | French.     |
| bg   | Bulgarian.  |
| de   | German.     |
| es   | Spanish.    |
| hu   | Hungarian.  |
| it   | Italian.    |
| ar   | Arabic.     |
| nl   | Dutch.      |
| pt   | Portuguese. |
| ro   | Romanian.   |

***

### Editing Sentences

If you want to customize or rewrite any sentence, you can easily do it.

Every CoreM script includes a folder named:

```
crm-locales/
├── crm-en.json
├── crm-es.json
├── crm-fr.json
└── ...
```

To change a sentence:

1. Open the language file you are using (`crm-en.json`, for example).
2. Edit any value on the right side.

{% hint style="danger" %}
Avoid changing the keys (left side). Only edit the text (right side), so your language files stay compatible with future updates.
{% endhint %}


---

# 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://corem.gitbook.io/corem/crm-core/change-language.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.
