[dyad] Anwendung ins Deutsche übersetzen - wrote 17 file(s)

This commit is contained in:
[dyad]
2026-01-18 17:28:41 +01:00
parent 212d13d5db
commit 26a947c9b7
17 changed files with 135 additions and 129 deletions

View File

@@ -39,7 +39,7 @@ export function ImageUploadArea({ onFilesSelected }: ImageUploadAreaProps) {
<Card>
<CardContent className="pt-6">
<div className="space-y-4">
<h3 className="text-lg font-medium">Upload Images</h3>
<h3 className="text-lg font-medium">Bilder hochladen</h3>
<div
className={cn(
"w-full h-48 rounded-lg border-2 border-dashed flex items-center justify-center relative transition-colors cursor-pointer hover:border-primary/60",
@@ -52,8 +52,8 @@ export function ImageUploadArea({ onFilesSelected }: ImageUploadAreaProps) {
>
<div className="flex flex-col items-center justify-center text-center text-muted-foreground">
<Upload className="w-8 h-8 mb-2" />
<p className="font-semibold">Click or drag and drop to upload</p>
<p className="text-xs text-muted-foreground mt-1">PNG, JPG, WEBP supported</p>
<p className="font-semibold">Klicken oder per Drag & Drop hochladen</p>
<p className="text-xs text-muted-foreground mt-1">PNG, JPG, WEBP werden unterstützt</p>
</div>
<Input type="file" ref={fileInputRef} onChange={handleImageChange} className="hidden" accept="image/*" multiple />
</div>