From 22026ed53359b42bbd3d0b221582605edac9d512 Mon Sep 17 00:00:00 2001 From: loma-one Date: Sat, 7 Mar 2026 09:13:45 +0100 Subject: [PATCH] quickphoto/quickphoto.js aktualisiert "Description" instead of "Bildbeschreibung" --- quickphoto/quickphoto.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickphoto/quickphoto.js b/quickphoto/quickphoto.js index 4f3c12eb..09151888 100644 --- a/quickphoto/quickphoto.js +++ b/quickphoto/quickphoto.js @@ -30,7 +30,7 @@ timestamp: Date.now() })); - let userDesc = existingDesc.trim() || "Bildbeschreibung"; + let userDesc = existingDesc.trim() || "Description"; return `[img]${fileName}|${userDesc}[/img]`; }); }; @@ -41,7 +41,7 @@ const data = localStorage.getItem(`qp_${fileName}`); if (data) { const parsed = JSON.parse(data); - const finalDesc = (desc === "Bildbeschreibung") ? "" : desc; + const finalDesc = (desc === "Description") ? "" : desc; return `[url=${parsed.url}][img=${parsed.img}]${finalDesc}[/img][/url]`; } return match;