blob: 5cdbd992526422fb77c4ec95ed07471282c24d79 (
plain)
1
2
3
4
5
6
7
8
|
"use strict";
document.addEventListener("DOMContentLoaded", () => {
// Auto-translate all elements with data-i18n attributes
for (const element of document.querySelectorAll("[data-i18n]")) {
element.innerText = chrome.i18n.getMessage(element.getAttribute("data-i18n"));
}
});
|