# Изменение названий тарифов

Посмотреть все названия можно в файле */modules/megapost/i18n/ru.php*, для их изменения можно воспользоваться стандартной [интернационализацией](https://www.hostcms.ru/documentation/modules/additional/i18n/) HostCMS (Расширение языковых файлов для модулей), в корне сайта в файле **bootstrap.php** разместите следующий код:

{% code title="bootstrap.php" lineNumbers="true" fullWidth="true" %}

```php
/* 
 * в файле ru.php было
 * 'pochta_tariff_0_4030' => "Посылка нестандартная"
 * 'pochta_tariff_0_23030' => "Посылка онлайн обыкновенная"
 */
 
Core_I18n::instance()->expandLng('megapost',
	array(
		'pochta_tariff_0_4030' => 'Посылка обычная',
		'pochta_tariff_0_23030' =>  'Посылка онлайн',
	)
);
```

{% endcode %}


---

# 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://support.morozovpimnev.ru/megapost/izmenenie-nazvanii-tarifov.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.
