const linkRegexFull = /\|% LINK='[.,#?=&a-zA-Z_:_\/]*' %\|[.,a-zA-Zа-яА-Я-!_ ]*\|% ENDLINK %\|/gim; const linkRegexFullNonGlobal = /\|% LINK='[.,#?=&a-zA-Z_:_\/]*' %\|[.,a-zA-Zа-яА-Я-!_ ]*\|% ENDLINK %\|/im; function parseLink(string) { const links = [...string.match(linkRegexFull)]; const linkRegexStart = /\|% LINK='[.,#?=&a-zA-Z_:_\/]*' %\|/; for (let i = 0; i < links.length; i++) { let tmp = links[i]; const href = tmp .match(linkRegexStart)[0] .replace("|%", "") .replace("%|", "") .split("=")[1] .trim(); let lnk = ""; lnk = tmp.replace( linkRegexStart, `` ); lnk = lnk.replace("|% ENDLINK %|", ``); string = string.replace(linkRegexFullNonGlobal, lnk); } return string; } const i18nTags = document.querySelectorAll("[data-i18n]"); const i18nStyles = document.querySelectorAll("[data-i18n-style]"); const i18nHrefs = document.querySelectorAll("[data-i18n-href]"); function changeLanguage(lang) { let strings = {}; let styles = {}; let hrefs = {}; if (lang == "ru") { strings = i18n_ru; styles = i18n_ru_style; hrefs = i18n_ru_href; } for (let i = 0; i < i18nTags.length; i++) { const element = i18nTags[i]; const id = element.getAttribute("data-i18n"); if (!strings[id]) { continue; } if (linkRegexFull.test(strings[id])) { element.innerHTML = parseLink(strings[id]); } else { element.innerHTML = strings[id]; } } for (let i = 0; i < i18nStyles.length; i++) { const element = i18nStyles[i]; const id = element.getAttribute("data-i18n-style"); if (!styles[id]) { continue; } element.style.cssText = styles[id]; } for (let i = 0; i < i18nHrefs.length; i++) { const element = i18nHrefs[i]; const id = element.getAttribute("data-i18n-href"); if (!hrefs[id]) { continue; } element.href = hrefs[id]; } } function detectAndChangeLanguage() { const userLang = window.navigator.language; if (userLang.startsWith("ru")) { changeLanguage("ru"); } } detectAndChangeLanguage();