|
Yes there is a way to fix it. Please do not change any of the names, leave it or change it back to the default. If you do not remember, go to the admin tool for FB and go to the integration tab where you choose CB. Press on the link that says it will built the tabs for CB. Verify that it did indeed change them back. Assumeing it did, you now need to get you a file located on your server using an FTP or joomlaxplorer and nav to /components/com_comprofiler/plugin/language/default_language/.
You will be looking for a file called default_language.php. You need to edit it. Add the followin code after the section with the comment label
[code:1]//added for SB 1.5 during 1.0 RC 1[/code:1]
Should look like this...
[code:1]//SB Integration Support
DEFINE('_UE_SB_TABTITLE','Forum settings');
DEFINE('_UE_SB_TABDESC','These are your forum settings');
DEFINE('_UE_SB_VIEWTYPE_TITLE','Preferred viewtype');
DEFINE('_UE_SB_VIEWTYPE_FLAT','Flat');
DEFINE('_UE_SB_VIEWTYPE_THREADED','Threaded');
DEFINE('_UE_SB_ORDERING_TITLE','Preferred message ordering');
DEFINE('_UE_SB_ORDERING_OLDEST','Oldest post first');
DEFINE('_UE_SB_ORDERING_LATEST','Latest post first');
DEFINE('_UE_SB_SIGNATURE','Signature');
//added for SB 1.5 during 1.0 RC 1
DEFINE('_UE_SB_POSTSPERPAGE','Posts per page');
DEFINE('_UE_SB_USERTIMEOFFSET','Local time offset from server');
DEFINE('_UE_SB_CONFIRMUNSUBSCRIBEALL','Are you sure you want to unsubscribe from all your forum subscriptions ?');
DEFINE('_UE_FORUMDATE','Date');
DEFINE('_UE_FORUMCATEGORY','Category');
DEFINE('_UE_FORUMSUBJECT','Subject');
DEFINE('_UE_FORUMHITS','Hits');
DEFINE('_UE_FORUM_POSTS','Forum Posts');
DEFINE('_UE_FORUM_LASTPOSTS','Last %s Forum Posts');
DEFINE('_UE_FORUM_FOUNDPOSTS','Found %s Forum Posts');
DEFINE('_UE_FORUM_STATS','Forum Statistics');
if (!defined('_RANK_MODERATOR')) DEFINE('_RANK_MODERATOR','Moderator');
if (!defined('_RANK_ADMINISTRATOR')) DEFINE('_RANK_ADMINISTRATOR','Administrator');
DEFINE('_UE_SBNOTINSTALLED','Simpleboard forum component is not installed. Please contact your site administrator.');
DEFINE('_UE_NOFORUMPOSTS','This user has no forum posts.');
DEFINE("_UE_USERPARAMS","User Options"«»);
//FB Integration Support
DEFINE('_UE_FB_TABTITLE','Forum settings');
DEFINE('_UE_FB_TABDESC','These are your forum settings');
DEFINE('_UE_FB_VIEWTYPE_TITLE','Preferred viewtype');
DEFINE('_UE_FB_VIEWTYPE_FLAT','Flat');
DEFINE('_UE_FB_VIEWTYPE_THREADED','Threaded');
DEFINE('_UE_FB_ORDERING_TITLE','Preferred message ordering');
DEFINE('_UE_FB_ORDERING_OLDEST','Oldest post first');
DEFINE('_UE_FB_ORDERING_LATEST','Latest post first');
DEFINE('_UE_FB_SIGNATURE','Signature');
//added for FB 1.5 during 1.0 RC 1
DEFINE('_UE_FB_POSTSPERPAGE','Posts per page');
DEFINE('_UE_FB_USERTIMEOFFSET','Local time offset from server');
DEFINE('_UE_FB_CONFIRMUNSUBSCRIBEALL','Are you sure you want to unsubscribe from all your forum subscriptions ?');
DEFINE('_UE_FBNOTINSTALLED','Fireboard forum component is not installed. Please contact your site administrator.');
//AboutMe
DEFINE('_UE_REALLY_EMPTY',' ');
//Mamblog search:[/code:1]
This should be around line 753. Once you save it/Upload it, go check CB, should be fixed.
And hey, give some Karma, please.;)
|