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:
parent
91ffbbc645
commit
b470e39bc3
@ -58,7 +58,7 @@ export default function FolxStadlPage() {
|
|||||||
<Link href="/">
|
<Link href="/">
|
||||||
<button className="flex items-center gap-2 text-bunny-light hover:text-white transition-colors">
|
<button className="flex items-center gap-2 text-bunny-light hover:text-white transition-colors">
|
||||||
<ArrowLeft className="w-5 h-5" />
|
<ArrowLeft className="w-5 h-5" />
|
||||||
<span>Back</span>
|
<span>Zurück</span>
|
||||||
</button>
|
</button>
|
||||||
</Link>
|
</Link>
|
||||||
<h1 className="text-3xl font-bold text-white uppercase tracking-wide">FOLX STADL</h1>
|
<h1 className="text-3xl font-bold text-white uppercase tracking-wide">FOLX STADL</h1>
|
||||||
@ -71,7 +71,7 @@ export default function FolxStadlPage() {
|
|||||||
{/* Pagination Info */}
|
{/* Pagination Info */}
|
||||||
<div className="mb-6 flex justify-between items-center">
|
<div className="mb-6 flex justify-between items-center">
|
||||||
<h2 className="text-2xl font-bold text-white">
|
<h2 className="text-2xl font-bold text-white">
|
||||||
Stran {currentPage} od {totalPages} ({folxStadlVideos.length} oddaj)
|
Seite {currentPage} von {totalPages} ({folxStadlVideos.length} Sendungen)
|
||||||
</h2>
|
</h2>
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
<Button
|
<Button
|
||||||
@ -82,7 +82,7 @@ export default function FolxStadlPage() {
|
|||||||
className="border-white/20 text-white hover:bg-white/10"
|
className="border-white/20 text-white hover:bg-white/10"
|
||||||
>
|
>
|
||||||
<ChevronLeft className="w-4 h-4" />
|
<ChevronLeft className="w-4 h-4" />
|
||||||
Prejšnja
|
Vorherige
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
variant="outline"
|
variant="outline"
|
||||||
@ -91,7 +91,7 @@ export default function FolxStadlPage() {
|
|||||||
disabled={currentPage === totalPages}
|
disabled={currentPage === totalPages}
|
||||||
className="border-white/20 text-white hover:bg-white/10"
|
className="border-white/20 text-white hover:bg-white/10"
|
||||||
>
|
>
|
||||||
Naslednja
|
Nächste
|
||||||
<ChevronRight className="w-4 h-4" />
|
<ChevronRight className="w-4 h-4" />
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
@ -115,11 +115,11 @@ export default function FolxStadlPage() {
|
|||||||
<div className="md:col-span-2 space-y-3">
|
<div className="md:col-span-2 space-y-3">
|
||||||
<h3 className="text-xl font-bold text-white">{video.title}</h3>
|
<h3 className="text-xl font-bold text-white">{video.title}</h3>
|
||||||
<p className="text-bunny-light text-sm leading-relaxed">
|
<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>
|
</p>
|
||||||
<div className="flex items-center gap-4 text-xs text-bunny-muted">
|
<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>{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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -128,7 +128,7 @@ export default function FolxStadlPage() {
|
|||||||
|
|
||||||
{folxStadlVideos.length === 0 && (
|
{folxStadlVideos.length === 0 && (
|
||||||
<div className="text-center py-16">
|
<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>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
@ -143,7 +143,7 @@ export default function FolxStadlPage() {
|
|||||||
className="border-white/20 text-white hover:bg-white/10"
|
className="border-white/20 text-white hover:bg-white/10"
|
||||||
>
|
>
|
||||||
<ChevronLeft className="w-4 h-4" />
|
<ChevronLeft className="w-4 h-4" />
|
||||||
Prejšnja
|
Vorherige
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<div className="flex gap-1">
|
<div className="flex gap-1">
|
||||||
@ -182,7 +182,7 @@ export default function FolxStadlPage() {
|
|||||||
disabled={currentPage === totalPages}
|
disabled={currentPage === totalPages}
|
||||||
className="border-white/20 text-white hover:bg-white/10"
|
className="border-white/20 text-white hover:bg-white/10"
|
||||||
>
|
>
|
||||||
Naslednja
|
Nächste
|
||||||
<ChevronRight className="w-4 h-4" />
|
<ChevronRight className="w-4 h-4" />
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user