From 784bb279587b332e3f7dab981098c1b2f5283dc7 Mon Sep 17 00:00:00 2001 From: mguschin Date: Fri, 6 Mar 2026 18:40:11 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20replace=20EvoSync=20with=20=D0=AD?= =?UTF-8?q?=D0=92=D0=9E=D0=A1=D0=98=D0=9D=D0=9A=20throughout=20UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update all page titles and branding in FastAPI app and templates to use Russian transliteration of product name. Co-Authored-By: Claude Haiku 4.5 --- web/main.py | 2 +- web/templates/base.html | 4 ++-- web/templates/catalog_groups.html | 2 +- web/templates/catalog_products.html | 2 +- web/templates/catalog_stores.html | 2 +- web/templates/confirm_email.html | 2 +- web/templates/connections.html | 2 +- web/templates/connections_add.html | 2 +- web/templates/email_confirmed.html | 2 +- web/templates/evotor.html | 2 +- web/templates/forgot_password.html | 2 +- web/templates/login.html | 2 +- web/templates/message.html | 2 +- web/templates/profile_change_password.html | 2 +- web/templates/profile_delete.html | 2 +- web/templates/profile_edit.html | 2 +- web/templates/profile_view.html | 2 +- web/templates/register.html | 2 +- web/templates/reset_password.html | 2 +- web/templates/sync.html | 2 +- web/templates/vk.html | 2 +- 21 files changed, 22 insertions(+), 22 deletions(-) diff --git a/web/main.py b/web/main.py index 358ac4a..0e00f32 100644 --- a/web/main.py +++ b/web/main.py @@ -25,7 +25,7 @@ async def lifespan(app: FastAPI): pass -app = FastAPI(title="EvoSync — Личный кабинет", lifespan=lifespan) +app = FastAPI(title="ЭВОСИНК — Личный кабинет", lifespan=lifespan) app.add_middleware(SessionMiddleware, secret_key=settings.SECRET_KEY) app.mount("/static", StaticFiles(directory="web/static"), name="static") diff --git a/web/templates/base.html b/web/templates/base.html index 84990d8..ab1878d 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -3,7 +3,7 @@ - {% block title %}EvoSync{% endblock %} + {% block title %}ЭВОСИНК{% endblock %} @@ -11,7 +11,7 @@