Arabic Server
|
|
All The table in arabic server (right to left orientation) is wrong not like the previous version. In the left to right servers (english server) is ok. |
|
|
I find the problem in lang.js you write:
var langtype = getLangtype(); var language = setLanguage(); with getlanguage function after getLangtype you must replace the lines and getlanguage is first. also the getLangtype function must be edited as follow:
function getLangtype() {
switch (language) {
case "il" :
case "ae" :
case "sa" :
case "eg" :
langtype = "rf";
return "rf";
default :
langtype = "lf";
return "lf";
}
}
|