in file functions.php has a small defect, which does not allow to derive all the required language
there is too much .php
here is:
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]if (file_exists(SECTM."locale/".$settings['locale'].".php.php"
) {
include SECTM."locale/".$settings['locale'].".php";
} else { include SECTM."locale/English.php"; }[/syntaxhighlighter]
is replaced by:
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]if (file_exists(SECTM."locale/".$settings['locale'].".php"
) {
include SECTM."locale/".$settings['locale'].".php";
} else { include SECTM."locale/English.php"; }[/syntaxhighlighter]