Translate the video platform content into German

Update client-side text content within FolxStadlPage.tsx to support German localization, including navigation elements, page titles, descriptions, and status messages.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 074b0e4c-6171-43bd-aa98-f9e04623ca14
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/074b0e4c-6171-43bd-aa98-f9e04623ca14/QQTyNAb
This commit is contained in:
sebastjanartic 2025-08-30 16:16:30 +00:00
parent 91ffbbc645
commit b470e39bc3

View File

@ -58,7 +58,7 @@ export default function FolxStadlPage() {
<Link href="/">
<button className="flex items-center gap-2 text-bunny-light hover:text-white transition-colors">
<ArrowLeft className="w-5 h-5" />
<span>Back</span>
<span>Zurück</span>
</button>
</Link>
<h1 className="text-3xl font-bold text-white uppercase tracking-wide">FOLX STADL</h1>
@ -71,7 +71,7 @@ export default function FolxStadlPage() {
{/* Pagination Info */}
<div className="mb-6 flex justify-between items-center">
<h2 className="text-2xl font-bold text-white">
Stran {currentPage} od {totalPages} ({folxStadlVideos.length} oddaj)
Seite {currentPage} von {totalPages} ({folxStadlVideos.length} Sendungen)
</h2>
<div className="flex gap-2">
<Button
@ -82,7 +82,7 @@ export default function FolxStadlPage() {
className="border-white/20 text-white hover:bg-white/10"
>
<ChevronLeft className="w-4 h-4" />
Prejšnja
Vorherige
</Button>
<Button
variant="outline"
@ -91,7 +91,7 @@ export default function FolxStadlPage() {
disabled={currentPage === totalPages}
className="border-white/20 text-white hover:bg-white/10"
>
Naslednja
Nächste
<ChevronRight className="w-4 h-4" />
</Button>
</div>
@ -115,11 +115,11 @@ export default function FolxStadlPage() {
<div className="md:col-span-2 space-y-3">
<h3 className="text-xl font-bold text-white">{video.title}</h3>
<p className="text-bunny-light text-sm leading-relaxed">
{video.description || "Opis ni na voljo za to oddajo."}
{video.description || "Keine Beschreibung für diese Sendung verfügbar."}
</p>
<div className="flex items-center gap-4 text-xs text-bunny-muted">
<span>{Math.floor(video.duration / 60)}:{(video.duration % 60).toString().padStart(2, '0')} min</span>
<span>{video.views} ogledi</span>
<span>{video.views} Aufrufe</span>
</div>
</div>
</div>
@ -128,7 +128,7 @@ export default function FolxStadlPage() {
{folxStadlVideos.length === 0 && (
<div className="text-center py-16">
<p className="text-bunny-muted text-lg">No FOLX STADL videos found</p>
<p className="text-bunny-muted text-lg">Keine FOLX STADL Videos gefunden</p>
</div>
)}
</div>
@ -143,7 +143,7 @@ export default function FolxStadlPage() {
className="border-white/20 text-white hover:bg-white/10"
>
<ChevronLeft className="w-4 h-4" />
Prejšnja
Vorherige
</Button>
<div className="flex gap-1">
@ -182,7 +182,7 @@ export default function FolxStadlPage() {
disabled={currentPage === totalPages}
className="border-white/20 text-white hover:bg-white/10"
>
Naslednja
Nächste
<ChevronRight className="w-4 h-4" />
</Button>
</div>