diff --git a/frontend/src/components/Channels.tsx b/frontend/src/components/Channels.tsx
index 3db9eb1..dc37a27 100644
--- a/frontend/src/components/Channels.tsx
+++ b/frontend/src/components/Channels.tsx
@@ -4,6 +4,8 @@ import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import {
ArrowDown,
ArrowUp,
+ Check,
+ ExternalLink,
Eye,
EyeOff,
History,
@@ -361,10 +363,11 @@ function SyncBadge({ ok, label, hint }: { ok: boolean; label: string; hint?: str
return (
+ {ok && }
{label}
@@ -393,6 +396,9 @@ function ChannelRow({
onToggleTag: (tagId: number) => void;
}) {
const { t } = useTranslation();
+ const ytUrl = c.handle
+ ? `https://www.youtube.com/@${c.handle.replace(/^@/, "")}`
+ : `https://www.youtube.com/channel/${c.id}`;
return (
-
+
+
+
+
+
+
+
+
{t("channels.row.stored", { count: c.stored_videos, formatted: c.stored_videos.toLocaleString() })}
{c.subscriber_count != null && · {t("channels.row.subs", { count: c.subscriber_count, formatted: c.subscriber_count.toLocaleString() })}}
diff --git a/frontend/src/i18n/locales/de/channels.json b/frontend/src/i18n/locales/de/channels.json
index 8638c94..f57b703 100644
--- a/frontend/src/i18n/locales/de/channels.json
+++ b/frontend/src/i18n/locales/de/channels.json
@@ -36,6 +36,7 @@
"row": {
"stored": "{{formatted}} gespeichert",
"subs": "{{formatted}} Abonnenten",
+ "openOnYouTube": "Auf YouTube öffnen",
"priorityHint": "Deine Einstufung für diesen Kanal. Sortiere den Feed nach „Kanalpriorität“, um Kanäle mit höherer Priorität nach oben zu bringen.",
"raisePriority": "Priorität erhöhen",
"lowerPriority": "Priorität senken",
diff --git a/frontend/src/i18n/locales/en/channels.json b/frontend/src/i18n/locales/en/channels.json
index 9ecd280..0adc427 100644
--- a/frontend/src/i18n/locales/en/channels.json
+++ b/frontend/src/i18n/locales/en/channels.json
@@ -36,6 +36,7 @@
"row": {
"stored": "{{formatted}} stored",
"subs": "{{formatted}} subs",
+ "openOnYouTube": "Open on YouTube",
"priorityHint": "Your ranking for this channel. Sort the feed by “Channel priority” to bring higher-priority channels to the top.",
"raisePriority": "Raise priority",
"lowerPriority": "Lower priority",
diff --git a/frontend/src/i18n/locales/hu/channels.json b/frontend/src/i18n/locales/hu/channels.json
index 30904eb..fc36ce7 100644
--- a/frontend/src/i18n/locales/hu/channels.json
+++ b/frontend/src/i18n/locales/hu/channels.json
@@ -36,6 +36,7 @@
"row": {
"stored": "{{formatted}} tárolt",
"subs": "{{formatted}} feliratkozó",
+ "openOnYouTube": "Megnyitás a YouTube-on",
"priorityHint": "A te rangsorod ehhez a csatornához. Rendezd a hírfolyamot „Csatorna prioritás” szerint, hogy a magasabb prioritású csatornák felülre kerüljenek.",
"raisePriority": "Prioritás növelése",
"lowerPriority": "Prioritás csökkentése",