MyBB Community Forums

Full Version: Lang Images Path?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What's the file to edit the path to the respective language images?

Help is appriciated.

Thanks & Regards.
heloo

what do u mean !! , pls describe more what u want !!


thx
You are going to have to edit the mybb default icons to achieve this.

/images/

They are all in there.
When you change language files the images path changes. I was wondering where to edi that.
The folder in which the language-based images are found is determined by this snippet of code found in global.php:
if(!empty($mybb->user['language']) && is_dir($theme['imgdir'].'/'.$mybb->user['language']))
{
	$theme['imglangdir'] = $theme['imgdir'].'/'.$mybb->user['language'];
}
else
{
	if(is_dir($theme['imgdir'].'/'.$mybb->settings['bblanguage']))
	{
		$theme['imglangdir'] = $theme['imgdir'].'/'.$mybb->settings['bblanguage'];
	}
	else
	{
		$theme['imglangdir'] = $theme['imgdir'];
	}
}

As you can see, it uses the name that the language file goes by. So if you have a language file called francais.php, then your image folder would be images/francais/