From 293bb47baf426d0c99ab79f4503bcdc004010c9e Mon Sep 17 00:00:00 2001 From: sebastjanartic <45803536-sebastjanartic@users.noreply.replit.com> Date: Sat, 30 Aug 2025 22:43:06 +0000 Subject: [PATCH] Update website text to support German language display Modify UI text elements in VideoPage.tsx to display German strings instead of English or Slovenian. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 344ec1e0-1186-4058-bbff-2e9619a7b1e0 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/344ec1e0-1186-4058-bbff-2e9619a7b1e0/FgaI1Sc --- client/src/pages/VideoPage.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index ac8b8c8..865f5e5 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -171,7 +171,7 @@ export default function VideoPage() { try { await navigator.clipboard.writeText(getShareUrl()); const notification = document.createElement('div'); - notification.textContent = 'Link copied!'; + notification.textContent = 'Link kopiert!'; notification.className = 'fixed top-4 right-4 bg-green-500 text-white px-4 py-2 rounded-lg z-50 transition-opacity duration-300'; document.body.appendChild(notification); setTimeout(() => { @@ -187,7 +187,7 @@ export default function VideoPage() { if (videoLoading) { return (
-
Nalagam video...
+
Lade Video...
); } @@ -195,7 +195,7 @@ export default function VideoPage() { if (!currentVideo) { return (
-
Video not found
+
Video nicht gefunden
); }