Mark the command as not to translate

This commit is contained in:
Dorian Niemiec 2024-04-06 14:18:38 +02:00
parent 5c3f8380c3
commit e44041cfe5

View file

@ -73,7 +73,7 @@ if (tabs.length > 0) {
if (i == tabs.length) {
container.innerHTML = otherTabOuterHTML;
} else {
container.innerHTML = "<div id=\"command-tab-h\">Install SVR.JS</div><div id=\"command-tab-copy\">Copy</div><code id=\"command-tab-command\">" + escapeHTML(tabs[i].command) + "</code><div class=\"command-tab-clearfix\"></div>";
container.innerHTML = "<div id=\"command-tab-h\">Install SVR.JS</div><div id=\"command-tab-copy\">Copy</div><code id=\"command-tab-command\" translate=\"no\">" + escapeHTML(tabs[i].command) + "</code><div class=\"command-tab-clearfix\"></div>";
document.getElementById("command-tab-copy").onclick = copyHandler;
}
}