This commit is contained in:
2025-09-27 20:49:58 +02:00
commit 767fb638ce
58 changed files with 6724 additions and 0 deletions

9
static/js/translate.js Normal file
View File

@@ -0,0 +1,9 @@
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.lang-select').forEach(function(el) {
el.addEventListener('click', function(e) {
e.preventDefault();
document.cookie = "lang=" + this.dataset.lang + ";path=/";
location.reload();
});
});
});