From c0eea843bfbcf36a2685b629dec76d1ab2735559 Mon Sep 17 00:00:00 2001 From: echo Date: Mon, 2 Mar 2026 22:22:06 +0100 Subject: [PATCH] translation --- .../src/components/home/PinnedLiveBlogsSidebar.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx b/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx index a26e9d5..eead015 100644 --- a/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx +++ b/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx @@ -7,7 +7,7 @@ import { useState } from 'react'; export function PinnedLiveBlogsSidebar() { const [showUpdates, setShowUpdates] = useState(true); - + const { data: liveBlogs, isLoading, error } = useQuery({ queryKey: ['pinned-live-blogs'], queryFn: fetchPinnedLiveBlogs, @@ -67,7 +67,7 @@ export function PinnedLiveBlogsSidebar() { // Collect last 5 updates from all pinned live blogs const getLastFiveUpdates = () => { if (!liveBlogs) return []; - + const allUpdates: Array<{ id: string; content: string; @@ -160,7 +160,7 @@ export function PinnedLiveBlogsSidebar() { >
-

Последни Update

+

Свежо набрано

@@ -207,7 +207,7 @@ export function PinnedLiveBlogsSidebar() {
-

Pinned Live

+

Во Живо

{liveBlogs.length} @@ -280,7 +280,7 @@ export function PinnedLiveBlogsSidebar() {