ui: remove html step counter translations

This commit is contained in:
a.tolmachev
2026-05-02 13:33:24 +00:00
parent 3a4dddd071
commit c54d234daa
11 changed files with 30 additions and 14 deletions
-3
View File
@@ -2362,9 +2362,6 @@ function applyLang() {
document.querySelectorAll('[data-i18n]').forEach(function(el) {
el.textContent = t(el.getAttribute('data-i18n'));
});
document.querySelectorAll('[data-i18n-html]').forEach(function(el) {
el.innerHTML = t(el.getAttribute('data-i18n-html'));
});
// placeholder
document.querySelectorAll('[data-i18n-ph]').forEach(function(el) {
el.placeholder = t(el.getAttribute('data-i18n-ph'));