diff --git a/static/webui/index.html b/static/webui/index.html
index 540378d9..bc5e9d49 100644
--- a/static/webui/index.html
+++ b/static/webui/index.html
@@ -373,7 +373,7 @@
-
+
diff --git a/static/webui/script.js b/static/webui/script.js
index a506d19d..b46b8fee 100644
--- a/static/webui/script.js
+++ b/static/webui/script.js
@@ -118,6 +118,9 @@ function updateLocElements() {
document.querySelectorAll("[data-loc]").forEach(elm => {
elm.innerHTML = loc(elm.getAttribute("data-loc"));
});
+ document.querySelectorAll("[data-loc-placeholder]").forEach(elm => {
+ elm.placeholder = loc(elm.getAttribute("data-loc-placeholder"));
+ });
}
function setActiveLanguage(lang) {