please check your SVN for the correct settings!

This commit is contained in:
Joas Schilling
2009-04-17 14:26:20 +00:00
parent c7103c21d3
commit f5a9c49f65
24 changed files with 716 additions and 716 deletions

View File

@@ -1,51 +1,51 @@
<?php
/**
*
* @package - Board3portal
* @version $Id: lang_pallet_acp.php 368 2008-09-06 10:20:18Z kevin74 $
* @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(
'ACP_PALLET_LAYOUT' => 'Block management',
'TITLE' => 'Block management',
'TITLE_EXPLAIN' => 'You can maintain your blocks here: edit, add, move and delete.',
'PALLET_LAYOUT' => 'Block layout',
'COLUMN_LEFT' => 'Left column',
'COLUMN_CENTER' => 'Center column',
'COLUMN_RIGHT' => 'Right column',
'PALLET_KEY' => 'Caption',
'KEY' => 'Function',
'ENABLE' => 'Edit',
'DISABLE' => 'Disable',
'MOVE_LEFT' => 'Move left',
'MOVE_RIGHT' => 'Move right',
));
<?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(
'ACP_PALLET_LAYOUT' => 'Block management',
'TITLE' => 'Block management',
'TITLE_EXPLAIN' => 'You can maintain your blocks here: edit, add, move and delete.',
'PALLET_LAYOUT' => 'Block layout',
'COLUMN_LEFT' => 'Left column',
'COLUMN_CENTER' => 'Center column',
'COLUMN_RIGHT' => 'Right column',
'PALLET_KEY' => 'Caption',
'KEY' => 'Function',
'ENABLE' => 'Edit',
'DISABLE' => 'Disable',
'MOVE_LEFT' => 'Move left',
'MOVE_RIGHT' => 'Move right',
));
?>