1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

amended LANs and issue #1177 17-01-2016 refreshed

This commit is contained in:
tgtje 2016-01-17 21:27:32 +01:00
parent 4b7d6bc0df
commit 9a9ba5ee4c
2 changed files with 5 additions and 4 deletions

View File

@ -17,7 +17,7 @@ if (!getperms('P'))
}
e107::lan('forum', 'admin');
e107::lan('forum', 'admin',true);
e107::lan('forum','front', true);
//e107::includeLan(e_PLUGIN.'forum/languages/'.e_LANGUAGE.'/English_admin.php');
//e107::lan('forum','', 'front');
@ -80,7 +80,7 @@ if(!deftrue('OLD_FORUMADMIN'))
'main/prefs' => array('caption'=> LAN_PREFS, 'perm' => 'P'),
'opt2' => array('divider'=>true),
'report/list' => array('caption'=> FORLAN_116, 'perm'=>'P'),
'post/list' => array('caption'=>"Latest Posts", 'perm'=>'P'),
'post/list' => array('caption'=>FORLAN_188, 'perm'=>'P'),
'main/prune' => array('caption'=> LAN_PRUNE, 'perm' => 'P'),
'main/tools' => array('caption'=>FORLAN_153, 'perm'=>'p')
@ -1046,7 +1046,7 @@ if(!deftrue('OLD_FORUMADMIN'))
public function renderHelp()
{
return array('caption'=>'Help', 'text'=>"<p>Click the 'delete' button to delete the report. <br /><br />Click the 'view' button to view the topic/thread</p>");
return array('caption'=>LAN_HELP, 'text'=>FORLAN_189);
}

View File

@ -211,5 +211,6 @@ define("FORLAN_185", "Indicates who can create new threads");
define("FORLAN_186", "Threads per page");
define("FORLAN_187", "Number of threads displayed per page");
define("FORLAN_188", "Latest Posts");
define("FORLAN_189", "Click the 'delete' button to delete the report.<br /><br />Click the 'view' button to view the topic/thread");
?>