From 5dfc3573e57e5718cb11369910f6014a92e28153 Mon Sep 17 00:00:00 2001 From: smanylov Date: Mon, 20 Apr 2026 17:48:08 +0700 Subject: [PATCH] fix translate add intends --- src/app/ui/reports/reports-info.tsx | 2 +- src/i18n/messages/ru.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/ui/reports/reports-info.tsx b/src/app/ui/reports/reports-info.tsx index 2de326c..49df5ce 100644 --- a/src/app/ui/reports/reports-info.tsx +++ b/src/app/ui/reports/reports-info.tsx @@ -49,7 +49,7 @@ export default function ReportsInfo() {
{`${monitoringCount?.day}/${monitoringCount?.weekly}/${monitoringCount?.month}`}
-
{t('monitoring')} {t('every')}: {t('day')}/{t('week')}/{t('month')}
+
{t('monitoring')} {t('every')} {t('day')}/ {t('week_accusative')}/ {t('month')}
diff --git a/src/i18n/messages/ru.json b/src/i18n/messages/ru.json index a595db1..3fe3d22 100644 --- a/src/i18n/messages/ru.json +++ b/src/i18n/messages/ru.json @@ -437,7 +437,7 @@ "in": "в", "last-content-check": "Последняя проверка контента", "day": "день", - "week": "неделя", + "week_accusative": "неделю", "month": "месяц", "every": "каждый" },