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;