Blame Identity/Models/Html/phpBB/3.0.4/language/en/viewforum.php

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