From 8464616c3717cdb40bc4966ec08123f2751c3a67 Mon Sep 17 00:00:00 2001 From: smanylov Date: Sat, 14 Mar 2026 11:52:13 +0700 Subject: [PATCH] change monitoring not supported message --- src/app/components/tanstak-table/TanstakTable.tsx | 6 +++++- src/app/styles/pages-styles.scss | 4 ++++ src/i18n/messages/en.json | 1 + src/i18n/messages/ru.json | 1 + 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/app/components/tanstak-table/TanstakTable.tsx b/src/app/components/tanstak-table/TanstakTable.tsx index d4630ce..d71aeac 100644 --- a/src/app/components/tanstak-table/TanstakTable.tsx +++ b/src/app/components/tanstak-table/TanstakTable.tsx @@ -409,8 +409,12 @@ export default function TanstakFilesTable({ fileType }: { fileType: string }) { {row.original.fileType === 'image' ? ( ) : ( -
+
{t('monitoring-is-not-supported')} +
+ {t('for-this-file-type')}
)}
diff --git a/src/app/styles/pages-styles.scss b/src/app/styles/pages-styles.scss index 2e68a22..eeb2c4f 100644 --- a/src/app/styles/pages-styles.scss +++ b/src/app/styles/pages-styles.scss @@ -813,6 +813,10 @@ .table-item { color: v.$text-s; font-size: 14px; + + &-not-supported { + font-size: 12px; + } } .table-item-protected { diff --git a/src/i18n/messages/en.json b/src/i18n/messages/en.json index 9a73479..8d54a57 100644 --- a/src/i18n/messages/en.json +++ b/src/i18n/messages/en.json @@ -296,6 +296,7 @@ "there-are-not-enough-funds-to-protect-file": "There are not enough funds to protect file. {count} tokens required", "duplicate-files": "Duplicate files", "monitoring-is-not-supported": "Monitoring is not supported", + "for-this-file-type": "for this file type", "frequently-asked-questions": "Frequently Asked Questions", "select-a-token-package": "Select a token package", "package-selected-tokens-price": "Package selected: {tokens} tokens for {price}₽", diff --git a/src/i18n/messages/ru.json b/src/i18n/messages/ru.json index 7b8e39d..35525cd 100644 --- a/src/i18n/messages/ru.json +++ b/src/i18n/messages/ru.json @@ -296,6 +296,7 @@ "there-are-not-enough-funds-to-protect-file": "Для защиты файла недостаточно средств. Необходимо {count} токен(ов/а)", "duplicate-files": "Дубликаты файлов", "monitoring-is-not-supported": "Мониторинг не поддерживается", + "for-this-file-type": "для данного типа файлов", "frequently-asked-questions": "Часто задаваемые вопросы", "select-a-token-package": "Выберите пакет токенов", "package-selected-tokens-price": "Выбран пакет: {tokens} токенов за {price}₽",