continue: work on violation page and table

This commit is contained in:
smanylov
2026-03-16 17:12:52 +07:00
parent c3de5727fe
commit 13ac3a6543
10 changed files with 465 additions and 213 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "no-copy-frontend", "name": "no-copy-frontend",
"version": "0.61.0", "version": "0.62.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev -p 2999", "dev": "next dev -p 2999",
+24 -14
View File
@@ -1,6 +1,6 @@
'use client' // app/files/[id]/page.tsx
'use server'
import { useParams } from 'next/navigation'
import ViolationPageTitle from '@/app/ui/violations/file-page/violation-page-title'; import ViolationPageTitle from '@/app/ui/violations/file-page/violation-page-title';
import ViolationPageViolationInfo from '@/app/ui/violations/file-page/violation-page-violation-info'; import ViolationPageViolationInfo from '@/app/ui/violations/file-page/violation-page-violation-info';
import ViolationPpageFileStatistic from '@/app/ui/violations/file-page/violation-page-file-statistic'; import ViolationPpageFileStatistic from '@/app/ui/violations/file-page/violation-page-file-statistic';
@@ -8,23 +8,34 @@ import ViolationPageFileInfo from '@/app/ui/violations/file-page/violation-page-
import ViolationPageActions from '@/app/ui/violations/file-page/violation-page-actions'; import ViolationPageActions from '@/app/ui/violations/file-page/violation-page-actions';
import ViolationPageViolationsList from '@/app/ui/violations/file-page/violation-page-violations-list'; import ViolationPageViolationsList from '@/app/ui/violations/file-page/violation-page-violations-list';
import ViolationPageNote from '@/app/ui/violations/file-page/violation-page-note'; import ViolationPageNote from '@/app/ui/violations/file-page/violation-page-note';
import { getFileViolations } from '@/app/actions/violationActions';
/* violation-details */ interface PageProps {
export default function Page() { params: Promise<{ id: string }>;
const params = useParams() searchParams: Promise<{ page?: string }>; // Добавляем searchParams
const id = params.id }
export default async function Page({
params,
searchParams
}: PageProps) {
const { id } = await params;
const { page } = await searchParams;
const currentPage = Number(page) || 1;
const fileViolations = await getFileViolations(id, currentPage);
return ( return (
<div <div className="violation-details">
className="violation-details"
>
<ViolationPageTitle /> <ViolationPageTitle />
<div <div className="grid grid-cols-[2fr_1fr] gap-3">
className="grid grid-cols-[2fr_1fr] gap-3"
>
<div> <div>
<ViolationPageViolationInfo /> <ViolationPageViolationInfo />
<ViolationPageViolationsList /> <ViolationPageViolationsList
fileViolations={fileViolations}
currentPage={currentPage}
fileId={id}
/>
<ViolationPageNote /> <ViolationPageNote />
</div> </div>
<div> <div>
@@ -33,7 +44,6 @@ export default function Page() {
<ViolationPageActions /> <ViolationPageActions />
</div> </div>
</div> </div>
</div> </div>
) )
} }
+104
View File
@@ -80,4 +80,108 @@ export async function startGlobalMonitoring(monitoringType: 'monitoring' | 'all_
} catch (error) { } catch (error) {
return null return null
} }
}
export async function getViolationFilesArray() {
const token = await getSessionData('token');
try {
const response = await fetch(`${API_BASE_URL}/api/v1/global-search/violation-summary`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': `Bearer ${token}`,
}
});
if (response.ok) {
let parsed = await response.json();
if (parsed.length) {
return parsed;
} else {
throw parsed;
}
} else {
throw (`${response.status}`);
}
} catch (error) {
return []
}
}
/* статистика нурешений */
export async function fetchViolationStats() {
const token = await getSessionData('token');
try {
const response = await fetch(`${API_BASE_URL}/api/v1/data`, {
method: 'POST',
body: JSON.stringify({
version: 1,
msg_id: 30010,
message_body: {
token: token
}
}),
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
});
if (response.ok) {
let parsed = await response.json();
if (parsed) {
return parsed;
} else {
throw null;
}
} else {
throw (`${response.status}`);
}
} catch (error) {
return null
}
}
export async function getFileViolations(fileId: string, page: number) {
console.log('getFileViolations');
console.log(page);
try {
const response = await fetch(`${API_BASE_URL}/api/v1/data`, {
method: 'POST',
body: JSON.stringify({
version: 1,
msg_id: 30009,
message_body: {
file_id: fileId,
page: page,
size: 5,
sort_direction: "desc"
}
}),
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
});
if (response.ok) {
let parsed = await response.json();
if (parsed.message_body) {
return parsed.message_body;
} else {
throw null;
}
} else {
throw (`${response.status}`);
}
} catch (error) {
return null
}
} }
+10 -4
View File
@@ -789,15 +789,15 @@
} }
td { td {
padding: 15px 0; padding: 15px 16px;
white-space: nowrap; white-space: nowrap;
&:first-child { &:first-child {
padding-left: 15px; /* padding-left: 15px; */
} }
&:last-child { &:last-child {
padding-right: 15px; /* padding-right: 15px; */
} }
&:has(.table-item-id) { &:has(.table-item-id) {
@@ -862,7 +862,8 @@
gap: 5px; gap: 5px;
} }
button { button,
a {
padding: 4px 12px; padding: 4px 12px;
font-size: 14px; font-size: 14px;
line-height: 20px; line-height: 20px;
@@ -4400,6 +4401,11 @@
margin-bottom: 10px; margin-bottom: 10px;
} }
.source-image {
max-width: 120px;
width: 100%;
}
.source-url { .source-url {
color: #6366f1; color: #6366f1;
font-weight: 600; font-weight: 600;
@@ -1,3 +1,5 @@
'use client'
import { useTranslations } from 'next-intl'; import { useTranslations } from 'next-intl';
import { useParams } from 'next/navigation' import { useParams } from 'next/navigation'
import { IconEyeDashed } from '@/app/ui/icons/icons'; import { IconEyeDashed } from '@/app/ui/icons/icons';
@@ -1,52 +1,149 @@
export default function ViolationPageViolationsList() { // app/ui/violations/file-page/violation-page-violations-list.tsx
'use client'
import { useTranslations } from 'next-intl';
import { useRouter, usePathname } from 'next/navigation';
import { useEffect } from 'react';
interface ViolationFileDetail {
id: number;
url: string;
page_url: string;
page_title: string;
host: string;
status: string;
created_date: string;
file_id: string;
}
interface ViolationFile {
violations: ViolationFileDetail[],
total_elements: number,
total_pages: number,
current_page: number,
page_size: number,
has_next: boolean,
has_previous: boolean
}
export default function ViolationPageViolationsList({
fileViolations,
currentPage,
fileId
}: {
fileViolations: ViolationFile,
currentPage: number,
fileId: string
}) {
const t = useTranslations('Global');
const router = useRouter();
const pathname = usePathname();
if (!fileViolations?.violations) {
return null;
}
useEffect(() => {
console.log(fileViolations);
}, [fileViolations])
const handlePageChange = (page: number) => {
router.push(`${pathname}?page=${page}`);
};
const getPageNumbers = () => {
const pages = [];
const maxVisible = 5;
const total = fileViolations.total_pages;
let start = Math.max(1, currentPage - Math.floor(maxVisible / 2));
let end = Math.min(total, start + maxVisible - 1);
if (end - start + 1 < maxVisible) {
start = Math.max(1, end - maxVisible + 1);
}
for (let i = start; i <= end; i++) {
pages.push(i);
}
return pages;
};
return ( return (
<div <div className="block-wrapper">
className="block-wrapper"
>
<div className="card-header"> <div className="card-header">
<h3 className="card-title"> <h3 className="card-title">
Все нарушения этого файла Все нарушения этого файла
</h3> </h3>
<span> <span>
Всего: 0 | Страница 0 из 0 Всего: {fileViolations.total_elements} | Страница {fileViolations.current_page} из {fileViolations.total_pages}
</span> </span>
</div> </div>
{/* это нужно будет сделать отдельным компонентом */} <div className="sources-list">
<div {fileViolations.violations.map(item => {
className="sources-list" return (
> <div className="source-card" key={item.id}>
<div className="source-card"> <div className="source-image">
<div className="source-header"> <img src={item.url} alt="" />
<a href="#" target="_blank" className="source-url"> </div>
fileName <div className="source-header">
</a> <a href={item.page_url} target="_blank" className="source-url">
<span className="source-status new"> <span>{item.page_title}</span>
Новое </a>
</span> <span className="source-status new">
</div> {item.status}
<div className="source-meta"> </span>
<span>0</span> </div>
<span>Неавторизованное использование</span> <div className="source-meta">
<span>0%</span> <span>{item.host}</span>
</div> </div>
<div className="source-actions"> <div className="source-actions">
<a href="violation-details.php?id=7244" className="btn-small btn-primary-small"> <a
Посмотреть href={item.page_url}
</a> className="btn-small btn-primary-small"
<a href="#" target="_blank" className="btn-small btn-secondary-small"> target="_blank"
Открыть >
</a> {t('open')}
</div> </a>
</div> </div>
</div>
);
})}
</div> </div>
<div className="pagination"> {fileViolations.total_pages > 1 && (
<span className="pagination__item pagination__item--active">1</span> <div className="pagination">
<a href="?id=7245&amp;related_page=2" className="pagination__item">2</a> {fileViolations.has_previous && (
<a href="?id=7245&amp;related_page=3" className="pagination__item">3</a> <button
<a href="?id=7245&amp;related_page=2" className="pagination__item pagination__item--next">Следующая</a> onClick={() => handlePageChange(currentPage - 1)}
</div> className="pagination__item pagination__item--prev"
>
Предыдущая
</button>
)}
{getPageNumbers().map(pageNum => (
<button
key={pageNum}
onClick={() => handlePageChange(pageNum)}
className={`pagination__item ${currentPage === pageNum ? 'pagination__item--active' : ''}`}
>
{pageNum}
</button>
))}
{fileViolations.has_next && (
<button
onClick={() => handlePageChange(currentPage + 1)}
className="pagination__item pagination__item--next"
>
Следующая
</button>
)}
</div>
)}
</div> </div>
) );
} }
@@ -3,7 +3,7 @@
import { useQuery, useQueryClient } from '@tanstack/react-query'; import { useQuery, useQueryClient } from '@tanstack/react-query';
import { useTranslations } from 'next-intl'; import { useTranslations } from 'next-intl';
import { getViolationSearchStatus, startGlobalMonitoring } from '@/app/actions/violationActions'; import { getViolationSearchStatus, startGlobalMonitoring } from '@/app/actions/violationActions';
import { useState } from 'react'; import { useEffect, useRef, useState } from 'react';
import ModalWindow from '@/app/components/ModalWindow'; import ModalWindow from '@/app/components/ModalWindow';
import { toast } from 'sonner'; import { toast } from 'sonner';
@@ -40,9 +40,6 @@ export default function ViolationsCheckAllSection() {
return getViolationSearchStatus(); return getViolationSearchStatus();
}, },
select: (data: violationSearchStatus) => { select: (data: violationSearchStatus) => {
console.log('violationSearchStatus');
console.log(data);
if (data) { if (data) {
return data; return data;
} else { } else {
@@ -62,6 +59,18 @@ export default function ViolationsCheckAllSection() {
const [isProcessing, setIsProcessing] = useState<boolean>(false); const [isProcessing, setIsProcessing] = useState<boolean>(false);
const [openWindow, setOpenWindow] = useState<boolean>(false); const [openWindow, setOpenWindow] = useState<boolean>(false);
const t = useTranslations('Global'); const t = useTranslations('Global');
const previousStatusRef = useRef<string | undefined>('');
useEffect(() => {
const currentStatus = violationSearchStatus?.status;
const previousStatus = previousStatusRef.current;
if (currentStatus === 'task-not-found' && previousStatus === 'PROCESSING') {
queryClient.invalidateQueries({ queryKey: ['violationData'] });
toast.success(t('violation-data-updated'));
}
previousStatusRef.current = currentStatus;
}, [violationSearchStatus?.status, queryClient]);
async function openModalWindow() { async function openModalWindow() {
await queryClient.invalidateQueries({ queryKey: ['violationSearchStatus'] }); await queryClient.invalidateQueries({ queryKey: ['violationSearchStatus'] });
@@ -135,9 +144,9 @@ export default function ViolationsCheckAllSection() {
<div className="check-all-description"> <div className="check-all-description">
Поиск нарушений во всех ваших изображениях. Проверка только точных совпадений (95%+). Поиск нарушений во всех ваших изображениях. Проверка только точных совпадений (95%+).
</div> </div>
{violationSearchStatus?.status && ( {(violationSearchStatus?.status !== 'task-not-found') && (
<div> <div>
{violationSearchStatus?.status} {t('content-verification-status')}: {violationSearchStatus?.status}
</div> </div>
)} )}
</div> </div>
+163 -147
View File
@@ -3,11 +3,27 @@
import { useMemo, useState } from 'react'; import { useMemo, useState } from 'react';
import { useReactTable, getCoreRowModel, getSortedRowModel, getPaginationRowModel, getFilteredRowModel, ColumnDef, SortingState, ColumnFiltersState } from '@tanstack/react-table'; import { useReactTable, getCoreRowModel, getSortedRowModel, getPaginationRowModel, getFilteredRowModel, ColumnDef, SortingState, ColumnFiltersState } from '@tanstack/react-table';
import { useTranslations } from 'next-intl'; import { useTranslations } from 'next-intl';
import { IconArrowUp, IconArrowDown, IconFilter, IconDoubleArrowRight, IconArrowRight, IconDoubleArrowLeft, IconArrowLeft } from '@/app/ui/icons/icons'; import { IconArrowUp, IconArrowDown, IconFilter, IconDoubleArrowRight, IconArrowRight, IconDoubleArrowLeft, IconArrowLeft, IconEye } from '@/app/ui/icons/icons';
import DropDownList from '@/app/components/DropDownList'; import DropDownList from '@/app/components/DropDownList';
import { useQuery } from '@tanstack/react-query'; import { useQuery } from '@tanstack/react-query';
import { getUserFilesData } from '@/app/actions/fileEntity'; import { getViolationFilesArray } from '@/app/actions/violationActions';
import { useViewport } from '@/app/hooks/useViewport';
import { formatDate, formatDateTime } from '@/app/lib/formatDate';
import Link from 'next/link';
interface ViolationFile {
createdAt: string;
fileId: string;
fileName: string;
fileSize: number;
latestViolationDate: string;
mimeType: string;
status: string;
supportId: number;
violationCount: number;
}
interface ViolationDataResponse extends Array<ViolationFile> { }
export default function ViolationsTable() { export default function ViolationsTable() {
const { const {
@@ -15,42 +31,65 @@ export default function ViolationsTable() {
isLoading, isLoading,
isError, isError,
error, error,
} = useQuery({ } = useQuery<ViolationFile[]>({
queryKey: ['violationData', 1, 10000], queryKey: ['violationData'],
queryFn: () => getUserFilesData(1, 10000), queryFn: () => getViolationFilesArray(),
select: (data) => { select: (data) => {
if (!data?.files) return []; return data;
return data.files.map((item: any) => {
/* const newDate = new Date(item.updatedAt).getTime(); */
return {
id: item.id,
};
});
}, },
refetchInterval: 30000 /* refetchInterval: 30000 */
}); });
const t = useTranslations('Global'); const t = useTranslations('Global');
// Состояния // Состояния
const [sorting, setSorting] = useState<SortingState>([]); const [sorting, setSorting] = useState<SortingState>([]);
const [columnFilters, setColumnFilters] = useState<ColumnFiltersState>([]); const [columnFilters, setColumnFilters] = useState<ColumnFiltersState>([]);
const [dateFilter, setDateFilter] = useState<string>('all');
const [pagination, setPagination] = useState({ const [pagination, setPagination] = useState({
pageIndex: 0, pageIndex: 0,
pageSize: 10, pageSize: 10,
}); });
const columns = useMemo<ColumnDef<any>[]>( const viewport = useViewport();
const getMaxLengthByWidth = (): number => {
if (viewport.device === 'MOBILE') return 26;
if (viewport.device === 'TABLET') return 32;
if (viewport.device === 'DESKTOP') return 84;
return 100;
};
const cutFileName = (fileName: string) => {
const MAX_FILE_NAME_LENGTH = getMaxLengthByWidth();
const lastDotIndex = fileName.lastIndexOf('.');
if (lastDotIndex <= 0) {
return fileName.length > MAX_FILE_NAME_LENGTH ? fileName.substring(0, MAX_FILE_NAME_LENGTH - 3) + '...' : fileName;
}
const nameWithoutExtension = fileName.substring(0, lastDotIndex);
const extension = fileName.substring(lastDotIndex);
if (fileName.length <= MAX_FILE_NAME_LENGTH) {
return fileName;
}
const maxNameLength = MAX_FILE_NAME_LENGTH - extension.length - 3;
if (maxNameLength <= 0) {
return '...' /* + extension */;
}
return nameWithoutExtension.substring(0, maxNameLength) + '...' /* + extension */;
}
const columns = useMemo<ColumnDef<ViolationFile>[]>(
() => [ () => [
{ {
accessorKey: 'file', accessorKey: 'supportId',
header: ({ column }) => ( header: ({ column }) => (
<div className="column"> <div className="column">
<span> <span>
Файл ID
</span> </span>
<button <button
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')} onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
@@ -76,86 +115,18 @@ export default function ViolationsTable() {
return ( return (
<div> <div>
<div className="text-center table-item table-item-id"> <div className="text-center table-item table-item-id">
{/* {row.original} */} {row.original.supportId}
Файл
</div> </div>
</div> </div>
) )
} }
}, },
{ {
accessorKey: 'violationUrl', accessorKey: 'file',
header: ({ column }) => ( header: ({ column }) => (
<div className="column"> <div className="column start">
<span> <span>
violationUrl {t('file')}
</span>
<button
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
className="sort-button"
>
{
column.getIsSorted() === 'asc' ?
<span>
<IconArrowUp />
</span>
: column.getIsSorted() === 'desc' ?
<span>
<IconArrowDown />
</span>
: <span>
<IconFilter />
</span>
}
</button>
</div>
),
cell: ({ row }) => (
<div className="text-center table-item">
{/* {row.original.amount} */}
violationUrl
</div>
),
},
{
accessorKey: 'statistic',
header: ({ column }) => (
<div className="column">
<span>
Статистика
</span>
<button
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
className="sort-button"
>
{
column.getIsSorted() === 'asc' ?
<span>
<IconArrowUp />
</span>
: column.getIsSorted() === 'desc' ?
<span>
<IconArrowDown />
</span>
: <span>
<IconFilter />
</span>
}
</button>
</div>
),
cell: ({ row }) => (
<div className="text-center table-item">
Статистика
</div>
),
},
{
accessorKey: 'DMCA',
header: ({ column }) => (
<div className="column">
<span>
DMCA жалоба
</span> </span>
<button <button
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')} onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
@@ -179,27 +150,117 @@ export default function ViolationsTable() {
), ),
cell: ({ row }) => { cell: ({ row }) => {
return ( return (
<div className="text-center font-semibold table-item"> <div>
<p className={`table-item-status`}> <div
DMCA жалоба className="flex items-center space-x-2 table-item table-item-file-name"
</p> title={row.original.fileName}
>
{cutFileName(row.original.fileName)}
</div>
</div> </div>
) )
}, }
},
{
accessorKey: 'violation',
header: ({ column }) => (
<div className="column">
<span>
{t('violation')}
</span>
<button
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
className="sort-button"
>
{
column.getIsSorted() === 'asc' ?
<span>
<IconArrowUp />
</span>
: column.getIsSorted() === 'desc' ?
<span>
<IconArrowDown />
</span>
: <span>
<IconFilter />
</span>
}
</button>
</div>
),
cell: ({ row }) => (
<div className="text-center table-item">
{row.original.violationCount}
</div>
),
},
{
accessorKey: 'date',
header: ({ column }) => (
<div className="column">
<span>
{t('date')}
</span>
<button
onClick={() => column.toggleSorting(column.getIsSorted() === 'asc')}
className="sort-button"
>
{
column.getIsSorted() === 'asc' ?
<span>
<IconArrowUp />
</span>
: column.getIsSorted() === 'desc' ?
<span>
<IconArrowDown />
</span>
: <span>
<IconFilter />
</span>
}
</button>
</div>
),
cell: ({ row }) => (
<div className="text-center table-item">
{formatDate(row.original.latestViolationDate)}
<br />
{formatDateTime(row.original.latestViolationDate)}
</div>
),
}, },
{ {
accessorKey: 'actions', accessorKey: 'actions',
header: ({ column }) => ( header: ({ column }) => (
<div className="column"> <div className="column">
<span> <span>
actions {t('actions')}
</span> </span>
</div> </div>
), ),
cell: ({ row }) => { cell: ({ row }) => {
return ( return (
<div className="actions-group"> <div className="actions">
actions <div
className="actions-group"
>
{/* <button
onClick={() => {
console.log(row.original.fileId);
}}
className="bg-violet-500 hover:bg-violet-600"
title={t('view')}
>
<IconEye />
</button> */}
<Link
href={`/pages/violations/${row.original.fileId}`}
className="bg-violet-500 hover:bg-violet-600"
title={t('view')}
>
<IconEye />
</Link>
</div>
</div> </div>
) )
} }
@@ -209,58 +270,13 @@ export default function ViolationsTable() {
) )
const filteredData = useMemo(() => { const filteredData = useMemo(() => {
let result = violationData?.payments; let result = violationData;
if (!result) { if (!result) {
return []; return [];
} }
// Фильтр по дате
if (dateFilter !== 'all') {
const now = Date.now();
const oneDay = 24 * 60 * 60 * 1000;
const sevenDays = 7 * oneDay;
const thirtyDays = 30 * oneDay;
switch (dateFilter) {
case 'today':
const todayStart = new Date().setHours(0, 0, 0, 0);
result = result.filter((item: any) => {
if (item.createdAt) {
return new Date(item.createdAt).getTime() >= todayStart
} else {
return 0
}
});
break;
case 'week':
const weekAgo = now - sevenDays;
result = result.filter((item: any) => {
if (item.createdAt) {
return new Date(item.createdAt).getTime() >= weekAgo;
}
});
break;
case 'month':
const monthAgo = now - thirtyDays;
result = result.filter((item: any) => {
if (item.createdAt) {
return new Date(item.createdAt).getTime() >= monthAgo;
}
});
break;
case 'older':
const monthAgo2 = now - thirtyDays;
result = result.filter((item: any) => {
if (item.createdAt) {
return new Date(item.createdAt).getTime() < monthAgo2;
}
});
break;
}
}
return result return result
}, [violationData?.payments, dateFilter]) }, [violationData])
const table = useReactTable({ const table = useReactTable({
data: filteredData, data: filteredData,
@@ -296,7 +312,7 @@ export default function ViolationsTable() {
<h3 <h3
className="tanstak-table-title" className="tanstak-table-title"
> >
Обнаруженные нарушения {t('violations-detected')}
</h3> </h3>
{/* Фильтры */} {/* Фильтры */}
+5 -1
View File
@@ -305,7 +305,11 @@
"file-verification-started-successfully": "File verification started successfully.", "file-verification-started-successfully": "File verification started successfully.",
"an-error-occurred-while-starting-file-verification": "An error occurred while starting file verification.", "an-error-occurred-while-starting-file-verification": "An error occurred while starting file verification.",
"file-file-name-already-exists": "The file {fileName} already exists on the account.", "file-file-name-already-exists": "The file {fileName} already exists on the account.",
"file-file-name-does-not-exist": "The file {fileName} does not exist on the account." "file-file-name-does-not-exist": "The file {fileName} does not exist on the account.",
"violations-detected": "Violations detected",
"content-verification-status": "Content verification status",
"violation-data-updated": "Violation data updated",
"open": "Open"
}, },
"Login-register-form": { "Login-register-form": {
"and": "and", "and": "and",
+5 -1
View File
@@ -305,7 +305,11 @@
"file-verification-started-successfully": "Проверка файлов успешно запущена.", "file-verification-started-successfully": "Проверка файлов успешно запущена.",
"an-error-occurred-while-starting-file-verification": "При запуске проверки файлов произошла ошибка.", "an-error-occurred-while-starting-file-verification": "При запуске проверки файлов произошла ошибка.",
"file-file-name-already-exists": "Файл {fileName} уже есть на аккаунте.", "file-file-name-already-exists": "Файл {fileName} уже есть на аккаунте.",
"file-file-name-does-not-exist": "Файла {fileName} на аккаунте нет." "file-file-name-does-not-exist": "Файла {fileName} на аккаунте нет.",
"violations-detected": "Обнаруженные нарушения",
"content-verification-status": "Статус проверки контента",
"violation-data-updated": "Данные нарушений обновлены",
"open": "Открыть"
}, },
"Login-register-form": { "Login-register-form": {
"and": "и", "and": "и",