Multi lang docs

This commit is contained in:
Georg Krause 2022-04-26 12:04:02 +00:00
commit 9045cbbd3f
155 changed files with 24615 additions and 8 deletions

16
docs/_static/css/translation-hint.css vendored Normal file
View file

@ -0,0 +1,16 @@
#translation-closer {
float: right;
}
.translation-hint {
position: fixed;
z-index: 999;
bottom: 20px;
right: 20px;
background-color: #c9c9c9;
padding: 20px;
}
.translation-hint h1 {
font-size: 20px;
}

7
docs/_static/js/translation-hint.js vendored Normal file
View file

@ -0,0 +1,7 @@
hideTranslationHint = function() {
document.getElementsByClassName("translation-hint")[0].style.display = "none"
}
window.onload = function() {
document.getElementById("translation-closer").addEventListener("click", hideTranslationHint);
}