diff --git a/package.json b/package.json index e7a05ae..1d02bd3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "no-copy-frontend", - "version": "0.2.0", + "version": "0.3.0", "private": true, "scripts": { "dev": "next dev -p 2999", diff --git a/src/app/[locale]/pages/marking-photo/page.tsx b/src/app/[locale]/pages/marking-photo/page.tsx index 9d2b8cf..3d23083 100644 --- a/src/app/[locale]/pages/marking-photo/page.tsx +++ b/src/app/[locale]/pages/marking-photo/page.tsx @@ -2,18 +2,23 @@ import ProtectedFilesTable from '@/app/ui/marking-page/protected-files-table'; import ProtectionSummary from '@/app/ui/marking-page/protection-summary'; import TestSection from '@/app/ui/marking-page/test-section'; import UploadSectionImage from '@/app/ui/marking-page/upload-section-image'; -import { IconImageFile } from '@/app/ui/icons/icons'; +import TanstakFilesTable from '@/app/components/tanstakTable'; +import { useTranslations } from 'next-intl'; export default function Page() { + const t = useTranslations('Global'); return (
{t('current-status-of')}
+- Размер: 150x150 - 4000x4000 пикселей, форматы: JPG, PNG, GIF, BMP (WEBP НЕ поддерживается) -
- +или
++ Разрешение изображение: 100x100 - 10000x10000 пикселей +
++ Размер файла: до 20 МБ +
++ Формат файла: JPG, PNG, GIF, BMP (WEBP НЕ поддерживается) +
+ {error && (❌ {error}
diff --git a/src/i18n/messages/en.json b/src/i18n/messages/en.json index bfddbfb..82831e7 100644 --- a/src/i18n/messages/en.json +++ b/src/i18n/messages/en.json @@ -53,7 +53,8 @@ "shown": "Shown", "date-filter": "Date filter", "type-filter": "Type filter", - "items-per-page": "Items per page" + "items-per-page": "Items per page", + "image-protection": "Защита изображений" }, "Login-register-form": { "and": "and", diff --git a/src/i18n/messages/ru.json b/src/i18n/messages/ru.json index e4adcc1..041ad37 100644 --- a/src/i18n/messages/ru.json +++ b/src/i18n/messages/ru.json @@ -53,7 +53,8 @@ "shown": "Показано", "date-filter": "Фильтр по дате", "type-filter": "Фильтр по типу", - "items-per-page": "Записей на странице" + "items-per-page": "Записей на странице", + "image-protection": "Защита изображений" }, "Login-register-form": { "and": "и",