Added changes to constants.php / added ACP modules, etc

This commit is contained in:
Kevin
2008-10-04 19:56:58 +00:00
parent 3904d7924c
commit 85e9ae633b
11 changed files with 394 additions and 33 deletions

View File

@@ -37,6 +37,8 @@ $lang = array_merge($lang, array(
'ACP_PORTAL_CUSTOM_INFO' => 'Eigener Block',
'ACP_PORTAL_MINICALENDAR_INFO' => 'Mini-Kalender',
'ACP_PORTAL_LINKS_INFO' => 'Links',
'ACP_PALLET_LIST_INFO' => 'Block Verwaltung',
'ACP_PORTAL_LAYOUT_INFO' => 'Portal Layout',
));
?>

View File

@@ -0,0 +1,40 @@
<?php
/**
*
* @package - Board3portal
* @version $Id$
* @copyright (c) kevin / saint ( www.board3.de/ ), (c) Ice, (c) nickvergessen ( www.flying-bits.org/ ), (c) redbull254 ( www.digitalfotografie-foren.de ), (c) Christian_N ( www.phpbb-projekt.de )
* @based on: phpBB3 Portal by Sevdin Filiz, www.phpbb3portal.com
* @translator (c) ( You - http://www.yourdomain.com )
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
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(
'MOVE_LEFT' => 'Move left',
'MOVE_RIGHT' => 'Move right',
));
?>