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

ef5584
ef5584
/**
ef5584
*
ef5584
* viewtopic [English]
ef5584
*
ef5584
* @package language
ef5584
* @version $Id: viewtopic.php 8775 2008-08-21 15:41:12Z Kellanved $
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
	'ATTACHMENT'						=> 'Attachment',
ef5584
	'ATTACHMENT_FUNCTIONALITY_DISABLED'	=> 'The attachments feature has been disabled.',
ef5584
ef5584
	'BOOKMARK_ADDED'		=> 'Bookmarked topic successfully.',
ef5584
	'BOOKMARK_ERR'			=> 'Bookmarking the topic failed. Please try again.',
ef5584
	'BOOKMARK_REMOVED'		=> 'Removed bookmarked topic successfully.',
ef5584
	'BOOKMARK_TOPIC'		=> 'Bookmark topic',
ef5584
	'BOOKMARK_TOPIC_REMOVE'	=> 'Remove from bookmarks',
ef5584
	'BUMPED_BY'				=> 'Last bumped by %1$s on %2$s.',
ef5584
	'BUMP_TOPIC'			=> 'Bump topic',
ef5584
ef5584
	'CODE'					=> 'Code',
ef5584
ef5584
	'DELETE_TOPIC'			=> 'Delete topic',
ef5584
	'DOWNLOAD_NOTICE'		=> 'You do not have the required permissions to view the files attached to this post.',
ef5584
ef5584
	'EDITED_TIMES_TOTAL'	=> 'Last edited by %1$s on %2$s, edited %3$d times in total.',
ef5584
	'EDITED_TIME_TOTAL'		=> 'Last edited by %1$s on %2$s, edited %3$d time in total.',
ef5584
	'EMAIL_TOPIC'			=> 'E-mail friend',
ef5584
	'ERROR_NO_ATTACHMENT'	=> 'The selected attachment does not exist anymore.',
ef5584
ef5584
	'FILE_NOT_FOUND_404'	=> 'The file %s does not exist.',
ef5584
	'FORK_TOPIC'			=> 'Copy topic',
ef5584
ef5584
	'LINKAGE_FORBIDDEN'		=> 'You are not authorised to view, download or link from/to this site.',
ef5584
	'LOGIN_NOTIFY_TOPIC'	=> 'You have been notified about this topic, please login to view it.',
ef5584
	'LOGIN_VIEWTOPIC'		=> 'The board requires you to be registered and logged in to view this topic.',
ef5584
ef5584
	'MAKE_ANNOUNCE'				=> 'Change to “Announcement”',
ef5584
	'MAKE_GLOBAL'				=> 'Change to “Global”',
ef5584
	'MAKE_NORMAL'				=> 'Change to “Standard Topic”',
ef5584
	'MAKE_STICKY'				=> 'Change to “Sticky”',
ef5584
	'MAX_OPTIONS_SELECT'		=> 'You may select up to %d options',
ef5584
	'MAX_OPTION_SELECT'			=> 'You may select 1 option',
ef5584
	'MISSING_INLINE_ATTACHMENT'	=> 'The attachment %s is no longer available',
ef5584
	'MOVE_TOPIC'				=> 'Move topic',
ef5584
ef5584
	'NO_ATTACHMENT_SELECTED'=> 'You haven’t selected an attachment to download or view.',
ef5584
	'NO_NEWER_TOPICS'		=> 'There are no newer topics in this forum.',
ef5584
	'NO_OLDER_TOPICS'		=> 'There are no older topics in this forum.',
ef5584
	'NO_UNREAD_POSTS'		=> 'There are no new unread posts for this topic.',
ef5584
	'NO_VOTE_OPTION'		=> 'You must specify an option when voting.',
ef5584
	'NO_VOTES'				=> 'No votes',
ef5584
ef5584
	'POLL_ENDED_AT'			=> 'Poll ended at %s',
ef5584
	'POLL_RUN_TILL'			=> 'Poll runs till %s',
ef5584
	'POLL_VOTED_OPTION'		=> 'You voted for this option',
ef5584
	'PRINT_TOPIC'			=> 'Print view',
ef5584
ef5584
	'QUICK_MOD'				=> 'Quick-mod tools',
ef5584
	'QUOTE'					=> 'Quote',
ef5584
ef5584
	'REPLY_TO_TOPIC'		=> 'Reply to topic',
ef5584
	'RETURN_POST'			=> '%sReturn to the post%s',
ef5584
ef5584
	'SUBMIT_VOTE'			=> 'Submit vote',
ef5584
ef5584
	'TOTAL_VOTES'			=> 'Total votes',
ef5584
ef5584
	'UNLOCK_TOPIC'			=> 'Unlock topic',
ef5584
ef5584
	'VIEW_INFO'				=> 'Post details',
ef5584
	'VIEW_NEXT_TOPIC'		=> 'Next topic',
ef5584
	'VIEW_PREVIOUS_TOPIC'	=> 'Previous topic',
ef5584
	'VIEW_RESULTS'			=> 'View results',
ef5584
	'VIEW_TOPIC_POST'		=> '1 post',
ef5584
	'VIEW_TOPIC_POSTS'		=> '%d posts',
ef5584
	'VIEW_UNREAD_POST'		=> 'First unread post',
ef5584
	'VISIT_WEBSITE'			=> 'WWW',
ef5584
	'VOTE_SUBMITTED'		=> 'Your vote has been cast.',
ef5584
	'VOTE_CONVERTED'		=> 'Changing votes is not supported for converted polls.',
ef5584
ef5584
));
ef5584
ef5584
?>