Files
ReZygisk/webroot/js/translate/modules.js
T
ThePedroo 6ec8b5e7bd fix: JS code indentation/syntax
This commit fixes the syntax and indentation of the JavaScript code to meet the organization standard.
2024-11-12 00:09:10 -03:00

9 lines
365 B
JavaScript

export function translateModulesPage(new_translations) {
document.getElementById('panel_modules_header').innerHTML = new_translations.page.modules.header
/* INFO: arch type */
const module_element_arch = document.getElementsByClassName('arch_desc')
for (const module of module_element_arch) {
module.innerHTML = new_translations.page.modules.arch
}
}