NappilyEvahAftah wrote:
I got this "critical error" and the MOD didn't install. What is it looking for? How do I supply the file?
Also, please explain it so a non-techie can understand it.
Thanks a bunch!
That means easymod doesnt recognize that code for it to find, if you will open language/lang_english/lang_main.php and look towards the bottom of your file you will see that code its looking for, easymod for some reason doesnt always detect that line of code.
You may want to edit that part manually.The correct string at the bottom it should be looking for is this
Code: Select all
//
// That's all, Folks!
// -------------------------------------------------
If you add it manually it will look like this
Code: Select all
/*******************
** MOD: Report Posts
*******************/
// BEGIN : BEFORE, ADD
$lang['Post_reports_none_cp'] = 'There aren\'t any open Reported Posts';
$lang['Post_reports_one_cp'] = 'There is %s open Reported Post';
$lang['Post_reports_many_cp'] = 'There are %s open Reported Posts';
$lang['All'] = 'All';
$lang['Display'] = 'Display only';
$lang['Report_post'] = 'Report Post';
$lang['Reporter'] = 'Reporter';
$lang['Status'] = 'Status';
$lang['Select_one'] = 'Select One';
$lang['Opt_in'] = 'Opt in to receive emails when a report is submitted';
$lang['Opt_out'] = 'Opt out so you don\'t receive emails when a report is submitted';
$lang['Post_reported'] = 'Post report submitted successfully.';
$lang['Close_success'] = 'Reports were Opened/Closed successfully.';
$lang['Opt_success'] = 'You have opt out/in successfully.';
$lang['Delete_success'] = 'Reports were deleted successfully.';
$lang['Click_return_reports'] = 'Click %shere%s to return to the Report Posts control panel.';
$lang['Report_email'] = 'Send Email when Post Reported';
$lang['Post_already_reported'] = 'This post has already been reported.';
$lang['Report_not_selected'] = 'You haven\'t selected any reports.';
$lang['Comments'] = 'Comments';
$lang['Last_action_comments'] = 'Comments from Moderators';
$lang['Last_action_comments_explain'] = 'Please write some comments about your action on this specific report';
$lang['Comments_explain'] = 'Please write some comments about your report on this specific post.';
$lang['Action'] = 'Action';
$lang['Report_comment'] = 'Comments regarding your action';
$lang['Previous_comments'] = 'Previous comments';
$lang['Last_action_checkbox'] = 'This action was done through the checkbox and drop down menu.';
$lang['Opened_by_user_on_date'] = 'Opened by %s on %s';
$lang['Closed_by_user_on_date'] = 'Closed by %s on %s';
$lang['Opened'] = 'Open';
$lang['Closed'] = 'Closed';
$lang['Open'] = 'Open';
$lang['Close'] = 'Close';
$lang['Non_existent_posts'] = 'Found and deleted %s leftover report(s) pointing to non-existent (deleted) posts';
// END : BEFORE, ADD
//
// That's all, Folks!
// -------------------------------------------------
?>