This commit is contained in:
Ice
2008-09-29 00:40:39 +00:00
parent b800ee0c96
commit 546c3beedb
5 changed files with 48 additions and 0 deletions

View File

@@ -34,6 +34,7 @@
{ICON_MOVE_UP_DISABLED}
{ICON_MOVE_DOWN_DISABLED}
<!-- ENDIF -->
{ICON_MOVE_RIGHT}
<!-- IF table_row.S_LEFT_ENABLED -->
{ICON_DELETE}
<!-- ELSE -->
@@ -80,6 +81,7 @@
{ICON_MOVE_UP_DISABLED}
{ICON_MOVE_DOWN_DISABLED}
<!-- ENDIF -->
{ICON_MOVE_LEFT}
<!-- IF table_row.S_RIGHT_ENABLED -->
{ICON_DELETE}
<!-- ELSE -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 946 B

View File

@@ -24,6 +24,12 @@ class acp_pallet
$block_sql = 'SELECT * FROM phpbb_portal_blocks ORDER BY block_position ASC , block_order ASC';
$block_result = $db->sql_query($block_sql);
$template->assign_vars(array(
'ICON_MOVE_RIGHT' => '<img src="' . $phpbb_admin_path . 'images/icon_right.gif" alt="' . $user->lang['MOVE_RIGHT'] . '" title="' . $user->lang['MOVE_RIGHT'] . '" />',
'ICON_MOVE_LEFT' => '<img src="' . $phpbb_admin_path . 'images/icon_left.gif" alt="' . $user->lang['MOVE_LEFT'] . '" title="' . $user->lang['MOVE_LEFT'] . '" />',
));
$block_array = array();
while ($block_row = $db->sql_fetchrow($block_result))

View File

@@ -0,0 +1,40 @@
<?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(
'MOVE_LEFT' => 'Move left',
'MOVE_RIGHT' => 'Move right',
));
?>