diff --git a/src/app/changelog/page.tsx b/src/app/changelog/page.tsx index 27f67c8..ba7c4dd 100644 --- a/src/app/changelog/page.tsx +++ b/src/app/changelog/page.tsx @@ -1,21 +1,16 @@ -"use client"; - import { Changelog } from "@/components/changelog"; import Link from "next/link"; import { Button } from "@/components/ui/button"; import { ArrowLeft } from "lucide-react"; -import { useTranslation } from "@/context/i18n-context"; export default function ChangelogPage() { - const { t } = useTranslation(); - return (
diff --git a/src/app/imprint/page.tsx b/src/app/imprint/page.tsx index 44b4da3..4b252f5 100644 --- a/src/app/imprint/page.tsx +++ b/src/app/imprint/page.tsx @@ -1,34 +1,29 @@ -"use client"; - import Link from "next/link"; import { Button } from "@/components/ui/button"; import { ArrowLeft } from "lucide-react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; -import { useTranslation } from "@/context/i18n-context"; export default function ImprintPage() { - const { t } = useTranslation(); - return (
- {t('imprintPage.title')} + Imprint

- {t('imprintPage.info')} + Information according to § 5 TMG (German Telemedia Act)

-

{t('imprintPage.contact')}

+

Contact Information:

[Your Company Name]

[Street Name & Number]

[Postal Code & City]

@@ -36,13 +31,13 @@ export default function ImprintPage() {

Phone: [your-phone-number]

-

{t('imprintPage.representedBy')}

+

Represented by:

[Your Name/CEO's Name]

-

{t('imprintPage.disclaimer')}

+

Disclaimer:

- {t('imprintPage.disclaimerText')} + This is a sample imprint and not legally binding. Please replace the placeholder content with your own information and consult a legal professional to ensure compliance with all applicable laws.

diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx index 7018176..8469cdd 100644 --- a/src/app/privacy/page.tsx +++ b/src/app/privacy/page.tsx @@ -1,51 +1,46 @@ -"use client"; - import Link from "next/link"; import { Button } from "@/components/ui/button"; import { ArrowLeft } from "lucide-react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; -import { useTranslation } from "@/context/i18n-context"; export default function PrivacyPage() { - const { t } = useTranslation(); - return (
- {t('privacyPage.title')} + Data Privacy Policy
-

{t('privacyPage.general')}

+

1. General Information

- {t('privacyPage.generalText')} + This is a placeholder for your data privacy policy. It outlines how personal data is collected, used, and protected when you use this website.

-

{t('privacyPage.collection')}

+

2. Data Collection on This Website

- {t('privacyPage.collectionText')} + All image processing happens directly in your browser. The images you upload are not sent to any server and are not stored by us. We do not collect any personal data from the images.

-

{t('privacyPage.rights')}

+

3. Your Rights

- {t('privacyPage.rightsText')} + As no personal data is collected, rights regarding access, rectification, or erasure of personal data are not applicable in this context.

-

{t('privacyPage.disclaimer')}

+

Disclaimer:

- {t('privacyPage.disclaimerText')} + This is a sample privacy policy and not legally binding. It is crucial to adapt this text to your specific data processing activities and to consult with a legal professional to ensure full GDPR compliance.

diff --git a/src/components/changelog.tsx b/src/components/changelog.tsx index d30e440..3de260e 100644 --- a/src/components/changelog.tsx +++ b/src/components/changelog.tsx @@ -4,19 +4,16 @@ import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { cn } from "@/lib/utils"; import { changelogData } from "@/lib/changelog-data"; -import { useTranslation } from "@/context/i18n-context"; export function Changelog() { - const { t } = useTranslation(); - return (

- {t('changelogPage.title')} + Changelog

- {t('changelogPage.description')} + Tracking all the new features, improvements, and bug fixes.

@@ -24,7 +21,7 @@ export function Changelog() {
- {t('changelogPage.version', { version: entry.version })} + Version {entry.version}

{entry.date}

@@ -40,7 +37,7 @@ export function Changelog() { "border-red-500/50 bg-red-500/10 text-red-700 dark:text-red-300": change.type === "Fixed", })} > - {t(`changelog.${change.type.toLowerCase()}`)} + {change.type}

{change.text}

diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 76d008a..4c1fb60 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -1,14 +1,10 @@ -"use client"; - import Link from "next/link"; import { Github, Twitter } from "lucide-react"; import { Button } from "@/components/ui/button"; import { changelogData } from "@/lib/changelog-data"; import { LanguageSwitcher } from "./language-switcher"; -import { useTranslation } from "@/context/i18n-context"; export function Footer() { - const { t } = useTranslation(); const latestVersion = changelogData[0]?.version; return ( @@ -33,8 +29,8 @@ export function Footer() {
- {t('footer.imprint')} - {t('footer.privacy')} + Imprint + Privacy {latestVersion && ( (null); - const aspectRatios = [ - { name: t('settings.image.custom'), value: "custom" }, - { name: t('settings.image.square'), value: "1/1" }, - { name: t('settings.image.standard'), value: "4/3" }, - { name: t('settings.image.photography'), value: "3/2" }, - { name: t('settings.image.widescreen'), value: "16/9" }, - ]; - useEffect(() => { return () => { previewUrls.forEach((url) => URL.revokeObjectURL(url)); @@ -106,7 +106,7 @@ export function ImageConverter() { ); if (imageFiles.length === 0) { - toast.error(t('toasts.noValidImages')); + toast.error("No valid image files found."); return; } @@ -128,7 +128,7 @@ export function ImageConverter() { setPreviewUrls(newPreviewUrls); setFilenames(newFilenames); - toast.success(t('toasts.imagesAdded', { count: imageFiles.length })); + toast.success(`${imageFiles.length} image(s) added.`); }; const handleImageChange = (e: ChangeEvent) => { @@ -170,7 +170,7 @@ export function ImageConverter() { setFilenames([]); setWidth(initialSettings.width); setHeight(initialSettings.height); - toast.info(t('toasts.allCleared')); + toast.info("All images cleared."); }; const handleFilenameChange = (index: number, newName: string) => { @@ -299,12 +299,12 @@ export function ImageConverter() { const handleConvertAndDownloadAll = async () => { if (images.length === 0) { - toast.error(t('toasts.uploadFirst')); + toast.error("Please upload images first."); return; } setIsConverting(true); - toast.info(t('toasts.conversionStarting', { count: images.length })); + toast.info(`Starting conversion for ${images.length} images...`); const conversionPromises = images.map((image, index) => convertAndDownload(image, previewUrls[index], index) @@ -312,12 +312,12 @@ export function ImageConverter() { try { await Promise.all(conversionPromises); - toast.success(t('toasts.conversionSuccess', { count: images.length })); + toast.success(`Successfully exported all ${images.length} images!`); } catch (error) { if (error instanceof Error) { toast.error(error.message); } else { - toast.error(t('toasts.conversionError')); + toast.error("An unknown error occurred during conversion."); } } finally { setIsConverting(false); @@ -326,16 +326,16 @@ export function ImageConverter() { const handleConvertAndDownloadSingle = async (index: number) => { setConvertingIndex(index); - toast.info(t('toasts.singleConversionStarting', { filename: filenames[index] })); + toast.info(`Starting conversion for ${filenames[index]}...`); try { await convertAndDownload(images[index], previewUrls[index], index); - toast.success(t('toasts.singleConversionSuccess', { filename: filenames[index] })); + toast.success(`Successfully exported ${filenames[index]}!`); } catch (error) { if (error instanceof Error) { toast.error(error.message); } else { - toast.error(t('toasts.conversionError')); + toast.error("An unknown error occurred during conversion."); } } finally { setConvertingIndex(null); @@ -343,7 +343,7 @@ export function ImageConverter() { }; const handleApplySettings = () => { - toast.info(t('toasts.settingsApplied')); + toast.info("Settings updated and will be used for all downloads."); }; const handleResetSettings = () => { @@ -362,7 +362,7 @@ export function ImageConverter() { setDefaultBaseName(initialSettings.defaultBaseName); setScaleMode(initialSettings.scaleMode); setObjectPosition(initialSettings.objectPosition); - toast.success(t('toasts.settingsReset')); + toast.success("All settings have been reset to their defaults."); }; const handleAspectRatioChange = (value: string) => { @@ -410,16 +410,16 @@ export function ImageConverter() { const handleApplyDefaultBaseNameToAll = () => { if (!defaultBaseName) { - toast.error(t('toasts.enterBaseName')); + toast.error("Please enter a default base name to apply."); return; } if (!hasImages) { - toast.info(t('toasts.uploadToApplyBaseName')); + toast.info("Upload some images first."); return; } const newFilenames = filenames.map(() => defaultBaseName); setFilenames(newFilenames); - toast.success(t('toasts.baseNameApplied', { baseName: defaultBaseName, count: images.length })); + toast.success(`Set base name to "${defaultBaseName}" for all ${images.length} images.`); }; return ( @@ -462,7 +462,7 @@ export function ImageConverter() { -

{t('imageCard.removeAllTooltip')}

+

Remove all uploaded images.

@@ -487,7 +487,7 @@ export function ImageConverter() {
{`Preview
- +

- {t('imageCard.finalName', { filename: `${finalFilename}.${format}` })} + Final name: {finalFilename}.{format}

@@ -512,7 +512,7 @@ export function ImageConverter() { -

{t('imageCard.downloadTooltip')}

+

Download this image

@@ -528,7 +528,7 @@ export function ImageConverter() { -

{t('imageCard.removeTooltip')}

+

Remove this image

@@ -546,9 +546,9 @@ export function ImageConverter() {
-

{t('settings.image.title')}

+

Image Settings

- {t('settings.image.description')} + Adjust resolution and scaling for all images.

@@ -556,13 +556,13 @@ export function ImageConverter() {
- + -

{t('settings.image.aspectRatioTooltip')}

+

Choose a preset aspect ratio or select 'Custom' to enter dimensions manually.

@@ -582,13 +582,13 @@ export function ImageConverter() {
- + -

{t('settings.image.widthTooltip')}

+

Set the output width in pixels. Leave blank to use the original width.

@@ -601,18 +601,18 @@ export function ImageConverter() { -

{t('settings.image.swapDimensionsTooltip')}

+

Swap the entered width and height values.

- + -

{t('settings.image.heightTooltip')}

+

Set the output height in pixels. Leave blank to use the original height.

@@ -622,13 +622,13 @@ export function ImageConverter() {
setKeepOrientation(Boolean(checked))} /> @@ -636,35 +636,35 @@ export function ImageConverter() {
- + -

{t('settings.image.scalingTooltip')}

+

Determines how the image fits into the new dimensions.

{scaleMode !== 'fill' && (
- + -

{t('settings.image.positionTooltip')}

+

Sets the anchor point for 'Cover' or 'Contain' scaling.

@@ -677,8 +677,8 @@ export function ImageConverter() {
-

{t('settings.filename.title')}

-

{t('settings.filename.description')}

+

Filename Settings

+

Customize the output filenames.

@@ -686,20 +686,20 @@ export function ImageConverter() {
{useDefaultBaseName && (
- +
-

{t('settings.filename.applyToAllTooltip')}

+

Apply this base name to all currently uploaded images.

@@ -722,13 +722,13 @@ export function ImageConverter() { )}
- + -

{t('settings.filename.prefixTooltip')}

+

Add text to the beginning of every filename.

@@ -736,13 +736,13 @@ export function ImageConverter() {
- + -

{t('settings.filename.suffixTooltip')}

+

Add text to the end of every filename (before the number).

@@ -751,13 +751,13 @@ export function ImageConverter() {
@@ -766,13 +766,13 @@ export function ImageConverter() {
- + -

{t('settings.filename.startNumberTooltip')}

+

The first number to use in the sequence.

@@ -786,13 +786,13 @@ export function ImageConverter() {
- + -

{t('settings.filename.paddingDigitsTooltip')}

+

Total number of digits for the counter, padded with leading zeros (e.g., 3 for 001).

@@ -813,21 +813,21 @@ export function ImageConverter() {
-

{t('settings.quality.title')}

-

{t('settings.quality.description')}

+

Quality Settings

+

Choose format and compression level.

- + -

{t('settings.quality.formatTooltip')}

+

Choose the output file format for the images.

@@ -843,13 +843,13 @@ export function ImageConverter() {
- + -

{t('settings.quality.qualityTooltip')}

+

Set compression quality for JPEG/WEBP. Higher is better quality but larger file size.

@@ -865,7 +865,7 @@ export function ImageConverter() { disabled={format === 'png'} /> {format === 'png' && ( -

{t('settings.quality.pngQualityDisabled')}

+

Quality slider is disabled for PNG (lossless format).

)}
@@ -881,11 +881,11 @@ export function ImageConverter() { variant="outline" > - {t('settings.reset')} + Reset -

{t('settings.resetTooltip')}

+

Reset all settings to their default values.

@@ -895,11 +895,11 @@ export function ImageConverter() { className="w-full" > - {t('settings.apply')} + Apply -

{t('settings.applyTooltip')}

+

Confirm and apply all the settings above. This does not download the images.

diff --git a/src/locales/de.json b/src/locales/de.json index 6418d18..8fceea2 100644 --- a/src/locales/de.json +++ b/src/locales/de.json @@ -6,123 +6,5 @@ "uploadFormats": "PNG, JPG, WEBP werden unterstützt", "uploadedImagesTitle": "Hochgeladene Bilder", "clearAll": "Alle löschen", - "downloadAll": "Alle herunterladen ({count})", - "settings": { - "image": { - "title": "Bildeinstellungen", - "description": "Passen Sie Auflösung und Skalierung für alle Bilder an.", - "aspectRatio": "Seitenverhältnis", - "aspectRatioTooltip": "Wählen Sie ein voreingestelltes Seitenverhältnis oder 'Benutzerdefiniert', um die Abmessungen manuell einzugeben.", - "custom": "Benutzerdefiniert", - "square": "1:1 (Quadratisch)", - "standard": "4:3 (Standard)", - "photography": "3:2 (Fotografie)", - "widescreen": "16:9 (Breitbild)", - "width": "Breite (px)", - "widthTooltip": "Legen Sie die Ausgabebreite in Pixel fest. Leer lassen, um die Originalbreite zu verwenden.", - "height": "Höhe (px)", - "heightTooltip": "Legen Sie die Ausgabehöhe in Pixel fest. Leer lassen, um die Originalhöhe zu verwenden.", - "swapDimensionsTooltip": "Tauschen Sie die eingegebenen Werte für Breite und Höhe.", - "keepOrientation": "Originalausrichtung beibehalten", - "keepOrientationTooltip": "Tauscht automatisch Breite und Höhe, um der Ausrichtung des Originalbildes zu entsprechen.", - "scaling": "Skalierung", - "scalingTooltip": "Bestimmt, wie das Bild in die neuen Abmessungen eingepasst wird.", - "fill": "Füllen (strecken)", - "cover": "Abdecken (zuschneiden)", - "contain": "Enthalten (Letterbox)", - "position": "Position", - "positionTooltip": "Legt den Ankerpunkt für die Skalierung 'Abdecken' oder 'Enthalten' fest." - }, - "filename": { - "title": "Dateiname-Einstellungen", - "description": "Passen Sie die Ausgabe-Dateinamen an.", - "useDefaultBaseName": "Standard-Basisnamen verwenden", - "useDefaultBaseNameTooltip": "Wenn aktiviert, verwenden alle neu hochgeladenen Bilder den angegebenen Standard-Basisnamen.", - "defaultBaseName": "Standard-Basisname", - "applyToAll": "Auf alle anwenden", - "applyToAllTooltip": "Diesen Basisnamen auf alle aktuell hochgeladenen Bilder anwenden.", - "prefix": "Präfix", - "prefixTooltip": "Fügen Sie Text am Anfang jedes Dateinamens hinzu.", - "suffix": "Suffix", - "suffixTooltip": "Fügen Sie Text am Ende jedes Dateinamens hinzu (vor der Nummer).", - "addSequentialNumber": "Laufende Nummer hinzufügen", - "addSequentialNumberTooltip": "Hängen Sie eine nummerierte Sequenz an jeden Dateinamen an.", - "startNumber": "Startnummer", - "startNumberTooltip": "Die erste Nummer, die in der Sequenz verwendet wird.", - "paddingDigits": "Auffüllziffern", - "paddingDigitsTooltip": "Gesamtzahl der Ziffern für den Zähler, mit führenden Nullen aufgefüllt (z. B. 3 für 001)." - }, - "quality": { - "title": "Qualitätseinstellungen", - "description": "Wählen Sie Format und Komprimierungsstufe.", - "format": "Format", - "formatTooltip": "Wählen Sie das Ausgabe-Dateiformat für die Bilder.", - "quality": "Qualität", - "qualityTooltip": "Stellen Sie die Komprimierungsqualität für JPEG/WEBP ein. Höher bedeutet bessere Qualität, aber größere Dateigröße.", - "pngQualityDisabled": "Qualitätsregler ist für PNG (verlustfreies Format) deaktiviert." - }, - "reset": "Zurücksetzen", - "resetTooltip": "Alle Einstellungen auf ihre Standardwerte zurücksetzen.", - "apply": "Anwenden", - "applyTooltip": "Bestätigen und alle oben genannten Einstellungen anwenden. Dies lädt die Bilder nicht herunter." - }, - "imageCard": { - "baseName": "Basisname", - "finalName": "Finaler Name: {filename}", - "downloadTooltip": "Dieses Bild herunterladen", - "removeTooltip": "Dieses Bild entfernen", - "removeAllTooltip": "Alle hochgeladenen Bilder entfernen." - }, - "toasts": { - "noValidImages": "Keine gültigen Bilddateien gefunden.", - "imagesAdded": "{count} Bild(er) hinzugefügt.", - "allCleared": "Alle Bilder gelöscht.", - "uploadFirst": "Bitte laden Sie zuerst Bilder hoch.", - "conversionStarting": "Konvertierung für {count} Bilder wird gestartet...", - "conversionSuccess": "Alle {count} Bilder erfolgreich exportiert!", - "conversionError": "Während der Konvertierung ist ein unbekannter Fehler aufgetreten.", - "singleConversionStarting": "Konvertierung für {filename} wird gestartet...", - "singleConversionSuccess": "{filename} erfolgreich exportiert!", - "settingsApplied": "Einstellungen aktualisiert und werden für alle Downloads verwendet.", - "settingsReset": "Alle Einstellungen wurden auf ihre Standardwerte zurückgesetzt.", - "enterBaseName": "Bitte geben Sie einen Standard-Basisnamen ein, um ihn anzuwenden.", - "uploadToApplyBaseName": "Laden Sie zuerst einige Bilder hoch.", - "baseNameApplied": "Basisname für alle {count} Bilder auf \"{baseName}\" gesetzt." - }, - "footer": { - "imprint": "Impressum", - "privacy": "Datenschutz" - }, - "changelogPage": { - "back": "Zurück zum Konverter", - "title": "Änderungsprotokoll", - "description": "Verfolgung aller neuen Funktionen, Verbesserungen und Fehlerbehebungen.", - "version": "Version {version}" - }, - "changelog": { - "new": "Neu", - "improved": "Verbessert", - "fixed": "Behoben" - }, - "imprintPage": { - "back": "Zurück zum Konverter", - "title": "Impressum", - "info": "Angaben gemäß § 5 TMG", - "contact": "Kontakt:", - "representedBy": "Vertreten durch:", - "disclaimer": "Haftungsausschluss:", - "disclaimerText": "Dies ist ein Musterimpressum und nicht rechtsverbindlich. Bitte ersetzen Sie den Platzhalterinhalt durch Ihre eigenen Informationen und konsultieren Sie einen Rechtsexperten, um die Einhaltung aller geltenden Gesetze sicherzustellen." - }, - "privacyPage": { - "back": "Zurück zum Konverter", - "title": "Datenschutzerklärung", - "general": "1. Allgemeine Hinweise", - "generalText": "Dies ist ein Platzhalter für Ihre Datenschutzerklärung. Sie beschreibt, wie personenbezogene Daten erfasst, verwendet und geschützt werden, wenn Sie diese Website nutzen.", - "collection": "2. Datenerfassung auf dieser Website", - "collectionText": "Die gesamte Bildverarbeitung findet direkt in Ihrem Browser statt. Die von Ihnen hochgeladenen Bilder werden nicht an einen Server gesendet und von uns nicht gespeichert. Wir erheben keine personenbezogenen Daten aus den Bildern.", - "rights": "3. Ihre Rechte", - "rightsText": "Da keine personenbezogenen Daten erhoben werden, sind Rechte bezüglich Auskunft, Berichtigung oder Löschung personenbezogener Daten in diesem Zusammenhang nicht anwendbar.", - "disclaimer": "Haftungsausschluss:", - "disclaimerText": "Dies ist eine Muster-Datenschutzerklärung und nicht rechtsverbindlich. Es ist entscheidend, diesen Text an Ihre spezifischen Datenverarbeitungsaktivitäten anzupassen und einen Rechtsexperten zu konsultieren, um die vollständige DSGVO-Konformität sicherzustellen." - } + "downloadAll": "Alle herunterladen ({count})" } \ No newline at end of file diff --git a/src/locales/en.json b/src/locales/en.json index 52531bf..e07a7f1 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -6,123 +6,5 @@ "uploadFormats": "PNG, JPG, WEBP supported", "uploadedImagesTitle": "Uploaded Images", "clearAll": "Clear All", - "downloadAll": "Download All ({count})", - "settings": { - "image": { - "title": "Image Settings", - "description": "Adjust resolution and scaling for all images.", - "aspectRatio": "Aspect Ratio", - "aspectRatioTooltip": "Choose a preset aspect ratio or select 'Custom' to enter dimensions manually.", - "custom": "Custom", - "square": "1:1 (Square)", - "standard": "4:3 (Standard)", - "photography": "3:2 (Photography)", - "widescreen": "16:9 (Widescreen)", - "width": "Width (px)", - "widthTooltip": "Set the output width in pixels. Leave blank to use the original width.", - "height": "Height (px)", - "heightTooltip": "Set the output height in pixels. Leave blank to use the original height.", - "swapDimensionsTooltip": "Swap the entered width and height values.", - "keepOrientation": "Keep original orientation", - "keepOrientationTooltip": "Automatically swaps width and height to match the original image's orientation.", - "scaling": "Scaling", - "scalingTooltip": "Determines how the image fits into the new dimensions.", - "fill": "Fill (stretch to fit)", - "cover": "Cover (crop to fit)", - "contain": "Contain (letterbox)", - "position": "Position", - "positionTooltip": "Sets the anchor point for 'Cover' or 'Contain' scaling." - }, - "filename": { - "title": "Filename Settings", - "description": "Customize the output filenames.", - "useDefaultBaseName": "Use default base name", - "useDefaultBaseNameTooltip": "When enabled, all newly uploaded images will use the specified default base name.", - "defaultBaseName": "Default base name", - "applyToAll": "Apply to all", - "applyToAllTooltip": "Apply this base name to all currently uploaded images.", - "prefix": "Prefix", - "prefixTooltip": "Add text to the beginning of every filename.", - "suffix": "Suffix", - "suffixTooltip": "Add text to the end of every filename (before the number).", - "addSequentialNumber": "Add sequential number", - "addSequentialNumberTooltip": "Append a numbered sequence to each filename.", - "startNumber": "Start number", - "startNumberTooltip": "The first number to use in the sequence.", - "paddingDigits": "Padding digits", - "paddingDigitsTooltip": "Total number of digits for the counter, padded with leading zeros (e.g., 3 for 001)." - }, - "quality": { - "title": "Quality Settings", - "description": "Choose format and compression level.", - "format": "Format", - "formatTooltip": "Choose the output file format for the images.", - "quality": "Quality", - "qualityTooltip": "Set compression quality for JPEG/WEBP. Higher is better quality but larger file size.", - "pngQualityDisabled": "Quality slider is disabled for PNG (lossless format)." - }, - "reset": "Reset", - "resetTooltip": "Reset all settings to their default values.", - "apply": "Apply", - "applyTooltip": "Confirm and apply all the settings above. This does not download the images." - }, - "imageCard": { - "baseName": "Base Name", - "finalName": "Final name: {filename}", - "downloadTooltip": "Download this image", - "removeTooltip": "Remove this image", - "removeAllTooltip": "Remove all uploaded images." - }, - "toasts": { - "noValidImages": "No valid image files found.", - "imagesAdded": "{count} image(s) added.", - "allCleared": "All images cleared.", - "uploadFirst": "Please upload images first.", - "conversionStarting": "Starting conversion for {count} images...", - "conversionSuccess": "Successfully exported all {count} images!", - "conversionError": "An unknown error occurred during conversion.", - "singleConversionStarting": "Starting conversion for {filename}...", - "singleConversionSuccess": "Successfully exported {filename}!", - "settingsApplied": "Settings updated and will be used for all downloads.", - "settingsReset": "All settings have been reset to their defaults.", - "enterBaseName": "Please enter a default base name to apply.", - "uploadToApplyBaseName": "Upload some images first.", - "baseNameApplied": "Set base name to \"{baseName}\" for all {count} images." - }, - "footer": { - "imprint": "Imprint", - "privacy": "Privacy" - }, - "changelogPage": { - "back": "Back to Converter", - "title": "Changelog", - "description": "Tracking all the new features, improvements, and bug fixes.", - "version": "Version {version}" - }, - "changelog": { - "new": "New", - "improved": "Improved", - "fixed": "Fixed" - }, - "imprintPage": { - "back": "Back to Converter", - "title": "Imprint", - "info": "Information according to § 5 TMG (German Telemedia Act)", - "contact": "Contact Information:", - "representedBy": "Represented by:", - "disclaimer": "Disclaimer:", - "disclaimerText": "This is a sample imprint and not legally binding. Please replace the placeholder content with your own information and consult a legal professional to ensure compliance with all applicable laws." - }, - "privacyPage": { - "back": "Back to Converter", - "title": "Data Privacy Policy", - "general": "1. General Information", - "generalText": "This is a placeholder for your data privacy policy. It outlines how personal data is collected, used, and protected when you use this website.", - "collection": "2. Data Collection on This Website", - "collectionText": "All image processing happens directly in your browser. The images you upload are not sent to any server and are not stored by us. We do not collect any personal data from the images.", - "rights": "3. Your Rights", - "rightsText": "As no personal data is collected, rights regarding access, rectification, or erasure of personal data are not applicable in this context.", - "disclaimer": "Disclaimer:", - "disclaimerText": "This is a sample privacy policy and not legally binding. It is crucial to adapt this text to your specific data processing activities and to consult with a legal professional to ensure full GDPR compliance." - } + "downloadAll": "Download All ({count})" } \ No newline at end of file