I cant change name of tab "aboutme" in profile, tryed add in Definition.php file this string $Definition['aboutme'] = 'About Me'; but name of tab dont changed and still called 'aboutme'
ah, the very last 'About Me', on the third line down above, is the HTML that is displayed. I am not sure why I did not use translate there, perhaps it did not work. This is what you would have to change.
Comments
public function ProfileController_AddProfileTabs_handler(&$Sender) {
$Sender->AddProfileTab('About Me', "/profile/aboutme/".$Sender->User->UserID."/".Gdn_Format::Url($Sender->User->Name), 'AboutMe', 'About Me');
$Sender->AddCssFile('/plugins/AboutMe/design/am.default_theme.css');
}