# Язык

{% stepper %}
{% step %}
Перейдите в режим рабочего стола и откройте терминал `Konsole`.
{% endstep %}

{% step %}
Установите пароль администратора, если он ещё не установлен:

{% code overflow="wrap" %}

```bash
passwd
```

{% endcode %}
{% endstep %}

{% step %}
Отключите `read-only` режим:

{% code overflow="wrap" %}

```bash
sudo steamos-readonly disable
```

{% endcode %}
{% endstep %}

{% step %}
Откройте файл `locale.gen`:

{% code overflow="wrap" %}

```bash
sudo nano /etc/locale.gen
```

{% endcode %}
{% endstep %}

{% step %}
Найдите и уберите комментарий (#) у строк:

{% code title="locale.gen" %}

```editorconfig
en_US.UTF-8
ru_RU.UTF-8
```

{% endcode %}

*Сохраните изменения `Ctrl` + `O` и закройте редактор `Ctrl` + `X`.*
{% endstep %}

{% step %}
Генерируйте локаль:

{% code overflow="wrap" %}

```bash
 sudo locale-gen
```

{% endcode %}
{% endstep %}

{% step %}
Откройте файл `locale.conf`:

{% code overflow="wrap" %}

```bash
sudo nano /etc/locale.conf
```

{% endcode %}
{% endstep %}

{% step %}
Замените строку:

{% code title="locale.conf" %}

```editorconfig
LANG=en_US.UTF-8
```

{% endcode %}

На:

{% code title="locale.conf" %}

```editorconfig
LANG=ru_RU.UTF-8
```

{% endcode %}

*Сохраните изменения `Ctrl` + `O` и закройте редактор `Ctrl` + `X`.*
{% endstep %}

{% step %}
Установите локаль в качестве основной:

{% code overflow="wrap" %}

```bash
sudo localectl set-locale ru_RU.UTF-8
```

{% endcode %}
{% endstep %}

{% step %}
Удалите стандартный файл конфигурации, который используется окружением рабочего стола KDE для хранения локальных настроек пользователя:

{% code overflow="wrap" %}

```bash
sudo rm ~/.config/plasma-localerc
```

{% endcode %}
{% endstep %}

{% step %}
Снова включите `read-only` режим:

```bash
sudo steamos-readonly enable
```

{% endstep %}
{% endstepper %}


---

# 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://guide.kodersha.ru/deck/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.
