[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

@@ -11,7 +11,7 @@ interface ActionButtonsProps {
export function ActionButtons({ onReset }: ActionButtonsProps) {
const handleApply = () => {
toast.info("Settings updated and will be used for all downloads.");
toast.info("Einstellungen aktualisiert und werden für alle Downloads verwendet.");
};
return (
@@ -20,18 +20,18 @@ export function ActionButtons({ onReset }: ActionButtonsProps) {
<Tooltip>
<TooltipTrigger asChild>
<Button onClick={onReset} className="w-full" variant="outline">
<RotateCcw className="mr-2 h-4 w-4" /> Reset
<RotateCcw className="mr-2 h-4 w-4" /> Zurücksetzen
</Button>
</TooltipTrigger>
<TooltipContent><p>Reset all settings to their default values.</p></TooltipContent>
<TooltipContent><p>Alle Einstellungen auf ihre Standardwerte zurücksetzen.</p></TooltipContent>
</Tooltip>
<Tooltip>
<TooltipTrigger asChild>
<Button onClick={handleApply} className="w-full">
<Check className="mr-2 h-4 w-4" /> Apply
<Check className="mr-2 h-4 w-4" /> Anwenden
</Button>
</TooltipTrigger>
<TooltipContent><p>Confirm and apply all the settings above. This does not download the images.</p></TooltipContent>
<TooltipContent><p>Bestätigen und alle oben genannten Einstellungen anwenden. Dies lädt die Bilder nicht herunter.</p></TooltipContent>
</Tooltip>
</div>
</TooltipProvider>