Partially added main menu block;

There is still a lot of work to do, look for @todo
This commit is contained in:
Marc Alexander
2010-09-12 16:11:24 +00:00
parent 8744d37ea5
commit df162ac76c
5 changed files with 260 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
<?php
/**
* @package Portal - Main Menu
* @version $Id$
* @copyright (c) 2009, 2010 Board3 Portal Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
'M_MENU' => 'Menu',
'M_CONTENT' => 'Content',
'M_ACP' => 'ACP',
'M_HELP' => 'Help',
'M_BBCODE' => 'BBCode FAQ',
'M_TERMS' => 'Terms of use',
'M_PRV' => 'Privacy policy',
'M_SEARCH' => 'Search',
// ACP
'ACP_PORTAL_MENU' => 'Menu settings',
'ACP_PORTAL_MENU_EXP' => 'Manage your main menu',
'ACP_PORTAL_MENU_MANAGE' => 'Manage menu',
'ACP_PORTAL_MENU_MANAGE_EXP' => 'You can manage the links of your main menu here.<br />Change the type of link by changing the selected option in the drop-down list next to the link.',
'ACP_PORTAL_MENU_CAT' => 'Category',
'ACP_PORTAL_MENU_INT' => 'Internal link',
'ACP_PORTAL_MENU_EXT' => 'External link',
'ACP_PORTAL_MENU_TITLE' => 'Title',
'ACP_PORTAL_MENU_URL' => 'URL',
'ACP_PORTAL_MENU_TYPE' => 'Type',
));
?>