Fixed missing display of event url;

Fixed XHTML validation error in calendar; 
Added portal block;
This commit is contained in:
Marc Alexander
2010-10-19 12:56:23 +00:00
parent 1ea2f6f3e5
commit 6b49958396
8 changed files with 1084 additions and 4 deletions

View File

@@ -0,0 +1,56 @@
<?php
/**
* @package Portal - Poll
* @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(
'PORTAL_POLL' => 'Poll',
'LATEST_POLLS' => 'Latest Polls',
'NO_OPTIONS' => 'This poll has no available options.',
'NO_POLL' => 'No polls available',
'RETURN_PORTAL' => '%sReturn to the portal%s',
// ACP
'ACP_PORTAL_POLLS_SETTINGS' => 'Poll settings',
'ACP_PORTAL_POLLS_SETTINGS_EXP' => 'This is where you customize the poll block.',
'PORTAL_POLL_TOPIC' => 'Display poll blocks',
'PORTAL_POLL_TOPIC_EXP' => 'Display this block on the portal.',
'PORTAL_POLL_TOPIC_ID' => 'Poll forum(s)',
'PORTAL_POLL_TOPIC_ID_EXP' => 'The forum(s) from which the polls should be displayed. If "Exclude forums" is set to "Yes", select the forums you want to exclude.<br />If "Exclude forums" is set to "No" select the forums you want to see.<br />Select/Deselect multiple forums by holding <samp>CTRL</samp> and clicking.',
'PORTAL_POLL_EXCLUDE_ID' => 'Exclude Forums',
'PORTAL_POLL_EXCLUDE_ID_EXP' => 'Select "Yes" if you want to exlude the selected forums from the polls block, and "No" if you only want to see the polls from the selected forums in the polls block.',
'PORTAL_POLL_LIMIT' => 'Poll display limit',
'PORTAL_POLL_LIMIT_EXP' => 'The number of polls you would like to display on the portal page.',
'PORTAL_POLL_ALLOW_VOTE' => 'Allow voting',
'PORTAL_POLL_ALLOW_VOTE_EXP' => 'Allow users with the required permissions to vote from the portal page.',
'PORTAL_POLL_HIDE' => 'Hide expired polls?',
));
?>