<body id="<?php $install_language ?>" dir="<?php $_lang['dir'] ?>"> ... </body>
#english .title {}
Ok; thanks for helping me out MotSmart.
@Jason
The idea is exellent and i’ll be in touch with AliAqua to get it partially done by the way you’ve suggested.
function include_image ($image) {
global $install_language; //added code
$result = "lang/english/images/" . $image;
if($install_language!="english" && file_exists("lang/" . $install_language . "/images/" . $image)) { // modify
{
$result = "lang/" . $install_language . "/images/" . $image;
} else {
$result = "lang/english/images/" . $image;
}
return $result;
}