language/lang_english/lang_main.php
 NOTE --- Remember to do this for all your installed languages!
  • FIND:

     NOTE --- This is a partial match, the whole lines for the english version look like this:
    	$lang['Read_profile'] = 'View user\'s profile';
    	$lang['Send_email'] = 'Send e-mail to user';
    $lang['Read_profile'] =
    $lang['Send_email'] =
    
  • REPLACE WITH:

     NOTE --- We are just removing the definition for $lang['Send_email']
    $lang['Read_profile'] = 'View user\'s profile'; 
    
  • FIND:

     NOTE --- This is a partial match, the whole lines for the english version look like this:
    	$lang['Notify'] = 'Notify me when a reply is posted';
    	$lang['Delete_post'] = 'Delete this post';
    $lang['Notify'] =
    $lang['Delete_post'] =
    
  • REPLACE WITH:

     NOTE --- We are just removing the definition for $lang['Delete_post']
    $lang['Notify'] = 'Notify me when a reply is posted';
    
  • FIND:

     NOTE --- This is a partial match, the whole lines for the english version look like this:
    	$lang['Email'] = 'E-mail';
    	$lang['Send_private_message'] = 'Send private message';
    	$lang['Hidden_email'] = '[ Hidden ]';
    	$lang['Search_user_posts'] = 'Search for posts by this user';
    $lang['Email'] =
    $lang['Send_private_message'] =
    $lang['Hidden_email'] =
    $lang['Search_user_posts'] =
    
  • REPLACE WITH:

     NOTE --- We are just removing the definition for $lang['Email'] and $lang['Search_user_posts']
    $lang['Send_private_message'] = 'Send private message';
    $lang['Hidden_email'] = '[ Hidden ]';
    
  • FIND:

     NOTE --- This is a partial match, the whole lines for the english version look like this:
    	$lang['Password_long'] = 'Your password must be no more than 32 characters.';
    	$lang['Too_many_registers'] = 'You have made too many registration attempts. Please try again later.';
    $lang['Password_long'] =
    $lang['Too_many_registers'] =
    
  • REPLACE WITH:

     NOTE --- We are just removing the definition for $lang['Too_many_registers']
    $lang['Password_long'] = 'Your password must be no more than 32 characters.';