Menu

#1 Using another Language

open
nobody
None
5
2008-08-12
2008-08-12
No

In the File includes/blocker.php search for
"require_once("".$fusion_path."admin/language/protector/lang-english.php");"

For Using another Language replace this with:
"
if (@file_exists("admin/language/protector/lang-$language.php"))
{
require_once("".$fusion_path."admin/language/protector/lang-$language.php");
}
else
{
require_once("".$fusion_path."admin/language/protector/lang-english.php");

}
"

Now you can use every language File.

In the File admin/modules/fusion.php you can comment out following:
/*
if (@file_exists("admin/language/protector/lang-$language.php"))
{
include("admin/language/protector/lang-$language.php");
}
else
{
include("admin/language/protector/lang-english.php");
}
*/

Frasch

P.S. Sorry for my bad english.

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.