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