Update website and search functionality with German language translations

Update search input placeholders and various text elements across the application to German.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 051a65da-1176-4478-a61c-c662f2a15536
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/8cc42625-c1f5-4e43-99bd-77f2c4dedee2/051a65da-1176-4478-a61c-c662f2a15536/9NQBiz8
This commit is contained in:
sebastjanartic 2025-08-30 22:15:46 +00:00
parent 56edcd1c5e
commit af4284cb37
3 changed files with 17 additions and 17 deletions

View File

@ -77,7 +77,7 @@ export default function SearchHeader({
<div className="relative">
<Input
type="search"
placeholder="Search videos..."
placeholder="Videos suchen..."
value={searchQuery}
onChange={(e) => handleSearchChange(e.target.value)}
className="bg-white border border-gray-300 rounded-lg px-4 py-2 pl-10 text-sm text-gray-900 placeholder-gray-500 focus:outline-none focus:border-bunny-blue transition-colors w-64"
@ -126,7 +126,7 @@ export default function SearchHeader({
<div className="relative">
<Input
type="search"
placeholder="Search videos..."
placeholder="Videos suchen..."
value={searchQuery}
onChange={(e) => handleSearchChange(e.target.value)}
className="bg-white border border-gray-300 rounded-lg px-4 py-2 pl-10 text-sm text-gray-900 placeholder-gray-500 focus:outline-none focus:border-bunny-blue transition-colors w-full"

View File

@ -232,7 +232,7 @@ export default function VideoPage() {
<div className="relative">
<Input
type="search"
placeholder="Search videos..."
placeholder="Videos suchen..."
value={searchQuery}
onChange={(e) => {
setSearchQuery(e.target.value);
@ -286,7 +286,7 @@ export default function VideoPage() {
<div className="relative">
<Input
type="search"
placeholder="Search..."
placeholder="Suchen..."
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
className="bg-white border border-gray-300 rounded-lg px-3 py-2 pl-9 text-sm text-gray-900 placeholder-gray-500 focus:outline-none focus:border-bunny-blue transition-colors w-full"

View File

@ -105,7 +105,7 @@ export default function Home() {
<div className="relative">
<Input
type="search"
placeholder="Search videos..."
placeholder="Videos suchen..."
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
className="bg-white border border-gray-300 rounded-lg px-4 py-2 pl-10 text-sm text-gray-900 placeholder-gray-500 focus:outline-none focus:border-bunny-blue transition-colors w-64"
@ -210,44 +210,44 @@ export default function Home() {
<h3 className="text-xl font-bold text-bunny-light">go4.video</h3>
</div>
<p className="text-bunny-muted mb-4">
Fast, reliable, and globally distributed video streaming platform.
Premium Video-Streaming-Plattform für Volksmusik, Schlager und Shows von Folx TV.
</p>
<div className="flex space-x-4">
<a href="#" className="text-bunny-muted hover:text-bunny-blue transition-colors">
Twitter
</a>
<a href="#" className="text-bunny-muted hover:text-bunny-blue transition-colors">
GitHub
Facebook
</a>
<a href="#" className="text-bunny-muted hover:text-bunny-blue transition-colors">
LinkedIn
YouTube
</a>
</div>
</div>
<div>
<h4 className="font-semibold mb-4 text-bunny-light">Platform</h4>
<h4 className="font-semibold mb-4 text-bunny-light">Plattform</h4>
<ul className="space-y-2 text-bunny-muted">
<li><a href="#" className="hover:text-bunny-light transition-colors">Upload</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Analytics</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Hochladen</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Statistiken</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">API Docs</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Support</a></li>
</ul>
</div>
<div>
<h4 className="font-semibold mb-4 text-bunny-light">Company</h4>
<h4 className="font-semibold mb-4 text-bunny-light">Unternehmen</h4>
<ul className="space-y-2 text-bunny-muted">
<li><a href="#" className="hover:text-bunny-light transition-colors">About</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Privacy</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Terms</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Contact</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Über uns</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Datenschutz</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">AGB</a></li>
<li><a href="#" className="hover:text-bunny-light transition-colors">Kontakt</a></li>
</ul>
</div>
</div>
<div className="border-t border-gray-700 mt-8 pt-8 text-center text-bunny-muted">
<p>&copy; 2024 go4.video. All rights reserved.</p>
<p>&copy; 2024 go4.video. Alle Rechte vorbehalten.</p>
</div>
</div>
</footer>