MyBB Community Forums

Full Version: [F] Little translation issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the file modcp.php you can find this line:
$subject = "<strong>{$lang->ipresult_post}</strong> <a href=\"".get_post_link($ipaddress['pid'], $ipaddress['tid'])."\">".htmlspecialchars_uni($ipaddress['subject'])."</a> by ".build_profile_link($ipaddress['username'], $ipaddress['uid']);
The word "by" is not translatable.
Also on that note, in /admin/modules/user/users.php, at lines 1129 - 1149, you find this:

	$sig_smilies = "off";
	if($mybb->settings['sigsmilies'] == 1)
	{
		$sig_smilies = "on";
	}
	$sig_mycode = "off";
	if($mybb->settings['sigmycode'] == 1)
	{
		$sig_mycode = "on";
		$signature_editor .= build_mycode_inserter("signature");
	}
	$sig_html = "off";
	if($mybb->settings['sightml'] == 1)
	{
		$sig_html = "on";
	}
	$sig_imgcode = "off";
	if($mybb->settings['sigimgcode'] == 1)
	{
		$sig_imgcode = "on";
	}

"on" and "off" are not translatable, either.
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.