[TUTORIAL] Full Multi Language Site - Easy to set-up and to use!

Hi angro!
First of all, thanks a lot for this great solution, it’s about to solve my problems!

Only question is: I have 5 languages (en, it, zh, ru, de), how should I implement the other 3 in the following script?

Thanks again, hope this is possibile!

<!-- Language: Englisch -->
<script>
	$(".english").html(function(i,v) {
    return "[[en]]" + v + "[[it]] <b></b>";});
</script>

<!-- Language: Italian -->
<script>
	$(".italian").html(function(i,v) {
    return "[[it]]" + v + "[[en]] <b></b>";});
</script>
1 Like