From 2a0ec209c322d9c253b186c1c5043cd395b45c4b Mon Sep 17 00:00:00 2001 From: kolo Date: Wed, 3 Dec 2025 13:58:44 +0300 Subject: [PATCH] Update documentation --- docs/locales/en/LC_MESSAGES/root/code_of_conduct.po | 1 - docs/locales/en/LC_MESSAGES/root/dependency_injection.po | 5 ++--- docs/locales/en/LC_MESSAGES/root/error_handling.po | 1 - docs/root/dependency_injection.rst | 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/locales/en/LC_MESSAGES/root/code_of_conduct.po b/docs/locales/en/LC_MESSAGES/root/code_of_conduct.po index f757584..75d8584 100644 --- a/docs/locales/en/LC_MESSAGES/root/code_of_conduct.po +++ b/docs/locales/en/LC_MESSAGES/root/code_of_conduct.po @@ -3,7 +3,6 @@ # This file is distributed under the same license as the Argenta package. # FIRST AUTHOR , 2025. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Argenta \n" diff --git a/docs/locales/en/LC_MESSAGES/root/dependency_injection.po b/docs/locales/en/LC_MESSAGES/root/dependency_injection.po index 897fc71..4e2afba 100644 --- a/docs/locales/en/LC_MESSAGES/root/dependency_injection.po +++ b/docs/locales/en/LC_MESSAGES/root/dependency_injection.po @@ -3,7 +3,6 @@ # This file is distributed under the same license as the Argenta package. # FIRST AUTHOR , 2025. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Argenta \n" @@ -99,11 +98,11 @@ msgstr "DI in Argenta is based on **providers** and a **container**." #: ../../root/dependency_injection.rst:50 msgid "" -"**Провайдер (``Provider``)** — это \"рецепт\", который объясняет, как " +"**Провайдер (Provider)** — это \"рецепт\", который объясняет, как " "создавать и настраивать ту или иную зависимость (например, подключение к " "БД, API-клиент или любой другой сервис)." msgstr "" -"**Provider (``Provider``)** is a \"recipe\" that explains how to create and " +"**Provider (Provider)** is a \"recipe\" that explains how to create and " "configure a particular dependency (for example, a database connection, API client, " "or any other service)." diff --git a/docs/locales/en/LC_MESSAGES/root/error_handling.po b/docs/locales/en/LC_MESSAGES/root/error_handling.po index d510762..9e95b4a 100644 --- a/docs/locales/en/LC_MESSAGES/root/error_handling.po +++ b/docs/locales/en/LC_MESSAGES/root/error_handling.po @@ -3,7 +3,6 @@ # This file is distributed under the same license as the Argenta package. # FIRST AUTHOR , 2025. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Argenta \n" diff --git a/docs/root/dependency_injection.rst b/docs/root/dependency_injection.rst index 9dc8205..3cd1416 100644 --- a/docs/root/dependency_injection.rst +++ b/docs/root/dependency_injection.rst @@ -47,7 +47,7 @@ В основе DI в Argenta лежат **провайдеры** и **контейнер**. -* **Провайдер (``Provider``)** — это "рецепт", который объясняет, как создавать и настраивать ту или иную зависимость (например, подключение к БД, API-клиент или любой другой сервис). +* **Провайдер (Provider)** — это "рецепт", который объясняет, как создавать и настраивать ту или иную зависимость (например, подключение к БД, API-клиент или любой другой сервис). * **Контейнер (IoC Container)** — это "фабрика", которая хранит все рецепты (провайдеры) и по запросу создаёт и выдаёт готовые зависимости. -----