Blame Identity/Webenv/phpBB/3.0.4/language/en/viewforum.php

ef5584
ef5584
/**
ef5584
*
ef5584
* viewforum [English]
ef5584
*
ef5584
* @package language
ef5584
* @version $Id: viewforum.php 8479 2008-03-29 00:22:48Z naderman $
ef5584
* @copyright (c) 2005 phpBB Group
ef5584
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
ef5584
*
ef5584
*/
ef5584
ef5584
/**
ef5584
* DO NOT CHANGE
ef5584
*/
ef5584
if (!defined('IN_PHPBB'))
ef5584
{
ef5584
	exit;
ef5584
}
ef5584
ef5584
if (empty($lang) || !is_array($lang))
ef5584
{
ef5584
	$lang = array();
ef5584
}
ef5584
ef5584
// DEVELOPERS PLEASE NOTE
ef5584
//
ef5584
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
ef5584
//
ef5584
// Placeholders can now contain order information, e.g. instead of
ef5584
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
ef5584
// translators to re-order the output of data while ensuring it remains correct
ef5584
//
ef5584
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
ef5584
// equally where a string contains only two placeholders which are used to wrap text
ef5584
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
ef5584
ef5584
$lang = array_merge($lang, array(
ef5584
	'ACTIVE_TOPICS'			=> 'Active topics',
ef5584
	'ANNOUNCEMENTS'			=> 'Announcements',
ef5584
ef5584
	'FORUM_PERMISSIONS'		=> 'Forum permissions',
ef5584
ef5584
	'ICON_ANNOUNCEMENT'		=> 'Announcement',
ef5584
	'ICON_STICKY'			=> 'Sticky',
ef5584
ef5584
	'LOGIN_NOTIFY_FORUM'	=> 'You have been notified about this forum, please login to view it.',
ef5584
ef5584
	'MARK_TOPICS_READ'		=> 'Mark topics read',
ef5584
ef5584
	'NEW_POSTS_HOT'			=> 'New posts [ Popular ]',
ef5584
	'NEW_POSTS_LOCKED'		=> 'New posts [ Locked ]',
ef5584
	'NO_NEW_POSTS_HOT'		=> 'No new posts [ Popular ]',
ef5584
	'NO_NEW_POSTS_LOCKED'	=> 'No new posts [ Locked ]',
ef5584
	'NO_READ_ACCESS'		=> 'You do not have the required permissions to read topics within this forum.',
ef5584
ef5584
	'POST_FORUM_LOCKED'		=> 'Forum is locked',
ef5584
ef5584
	'TOPICS_MARKED'			=> 'The topics for this forum have now been marked read.',
ef5584
ef5584
	'VIEW_FORUM'			=> 'View forum',
ef5584
	'VIEW_FORUM_TOPIC'		=> '1 topic',
ef5584
	'VIEW_FORUM_TOPICS'		=> '%d topics',
ef5584
));
ef5584
ef5584
?>