Blame Extras/phpBB/3.0.4/language/en/posting.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* posting [English]
4c79b5
*
4c79b5
* @package language
4c79b5
* @version $Id: posting.php 8555 2008-05-15 14:10:11Z Kellanved $
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
	'ADD_ATTACHMENT'			=> 'Upload attachment',
4c79b5
	'ADD_ATTACHMENT_EXPLAIN'	=> 'If you wish to attach one or more files enter the details below.',
4c79b5
	'ADD_FILE'					=> 'Add the file',
4c79b5
	'ADD_POLL'					=> 'Poll creation',
4c79b5
	'ADD_POLL_EXPLAIN'			=> 'If you do not want to add a poll to your topic leave the fields blank.',
4c79b5
	'ALREADY_DELETED'			=> 'Sorry but this message is already deleted.',
4c79b5
	'ATTACH_QUOTA_REACHED'		=> 'Sorry, the board attachment quota has been reached.',
4c79b5
	'ATTACH_SIG'				=> 'Attach a signature (signatures can be altered via the UCP)',
4c79b5
4c79b5
	'BBCODE_A_HELP'				=> 'Inline uploaded attachment: [attachment=]filename.ext[/attachment]',
4c79b5
	'BBCODE_B_HELP'				=> 'Bold text: [b]text[/b]',
4c79b5
	'BBCODE_C_HELP'				=> 'Code display: [code]code[/code]',
4c79b5
	'BBCODE_E_HELP'				=> 'List: Add list element',
4c79b5
	'BBCODE_F_HELP'				=> 'Font size: [size=85]small text[/size]',
4c79b5
	'BBCODE_IS_OFF'				=> '%sBBCode%s is OFF',
4c79b5
	'BBCODE_IS_ON'				=> '%sBBCode%s is ON',
4c79b5
	'BBCODE_I_HELP'				=> 'Italic text: [i]text[/i]',
4c79b5
	'BBCODE_L_HELP'				=> 'List: [list]text[/list]',
4c79b5
	'BBCODE_LISTITEM_HELP'		=> 'List item: [*]text[/*]',
4c79b5
	'BBCODE_O_HELP'				=> 'Ordered list: [list=]text[/list]',
4c79b5
	'BBCODE_P_HELP'				=> 'Insert image: [img]http://image_url[/img]',
4c79b5
	'BBCODE_Q_HELP'				=> 'Quote text: [quote]text[/quote]',
4c79b5
	'BBCODE_S_HELP'				=> 'Font colour: [color=red]text[/color]  Tip: you can also use color=#FF0000',
4c79b5
	'BBCODE_U_HELP'				=> 'Underline text: [u]text[/u]',
4c79b5
	'BBCODE_W_HELP'				=> 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]',
4c79b5
	'BBCODE_D_HELP'				=> 'Flash: [flash=width,height]http://url[/flash]',
4c79b5
	'BUMP_ERROR'				=> 'You cannot bump this topic so soon after the last post.',
4c79b5
4c79b5
	'CANNOT_DELETE_REPLIED'		=> 'Sorry but you may only delete posts which have not been replied to.',
4c79b5
	'CANNOT_EDIT_POST_LOCKED'	=> 'This post has been locked. You can no longer edit that post.',
4c79b5
	'CANNOT_EDIT_TIME'			=> 'You can no longer edit or delete that post.',
4c79b5
	'CANNOT_POST_ANNOUNCE'		=> 'Sorry but you cannot post announcements.',
4c79b5
	'CANNOT_POST_STICKY'		=> 'Sorry but you cannot post sticky topics.',
4c79b5
	'CHANGE_TOPIC_TO'			=> 'Change topic type to',
4c79b5
	'CLOSE_TAGS'				=> 'Close tags',
4c79b5
	'CURRENT_TOPIC'				=> 'Current topic',
4c79b5
4c79b5
	'DELETE_FILE'				=> 'Delete file',
4c79b5
	'DELETE_MESSAGE'			=> 'Delete message',
4c79b5
	'DELETE_MESSAGE_CONFIRM'	=> 'Are you sure you want to delete this message?',
4c79b5
	'DELETE_OWN_POSTS'			=> 'Sorry but you can only delete your own posts.',
4c79b5
	'DELETE_POST_CONFIRM'		=> 'Are you sure you want to delete this post?',
4c79b5
	'DELETE_POST_WARN'			=> 'Once deleted the post cannot be recovered',
4c79b5
	'DISABLE_BBCODE'			=> 'Disable BBCode',
4c79b5
	'DISABLE_MAGIC_URL'			=> 'Do not automatically parse URLs',
4c79b5
	'DISABLE_SMILIES'			=> 'Disable smilies',
4c79b5
	'DISALLOWED_CONTENT'		=> 'The upload was rejected because the uploaded file was identified as a possible attack vector.',
4c79b5
	'DISALLOWED_EXTENSION'		=> 'The extension %s is not allowed.',
4c79b5
	'DRAFT_LOADED'				=> 'Draft loaded into posting area, you may want to finish your post now.
Your draft will be deleted after submitting this post.',
4c79b5
	'DRAFT_LOADED_PM'			=> 'Draft loaded into message area, you may want to finish your private message now.
Your draft will be deleted after submitting this private message.',
4c79b5
	'DRAFT_SAVED'				=> 'Draft successfully saved.',
4c79b5
	'DRAFT_TITLE'				=> 'Draft title',
4c79b5
4c79b5
	'EDIT_REASON'				=> 'Reason for editing this post',
4c79b5
	'EMPTY_FILEUPLOAD'			=> 'The uploaded file is empty.',
4c79b5
	'EMPTY_MESSAGE'				=> 'You must enter a message when posting.',
4c79b5
	'EMPTY_REMOTE_DATA'			=> 'File could not be uploaded, please try uploading the file manually.',
4c79b5
4c79b5
	'FLASH_IS_OFF'				=> '[flash] is OFF',
4c79b5
	'FLASH_IS_ON'				=> '[flash] is ON',
4c79b5
	'FLOOD_ERROR'				=> 'You cannot make another post so soon after your last.',
4c79b5
	'FONT_COLOR'				=> 'Font colour',
4c79b5
	'FONT_COLOR_HIDE'			=> 'Hide font colour',
4c79b5
	'FONT_HUGE'					=> 'Huge',
4c79b5
	'FONT_LARGE'				=> 'Large',
4c79b5
	'FONT_NORMAL'				=> 'Normal',
4c79b5
	'FONT_SIZE'					=> 'Font size',
4c79b5
	'FONT_SMALL'				=> 'Small',
4c79b5
	'FONT_TINY'					=> 'Tiny',
4c79b5
4c79b5
	'GENERAL_UPLOAD_ERROR'		=> 'Could not upload attachment to %s.',
4c79b5
4c79b5
	'IMAGES_ARE_OFF'			=> '[img] is OFF',
4c79b5
	'IMAGES_ARE_ON'				=> '[img] is ON',
4c79b5
	'INVALID_FILENAME'			=> '%s is an invalid filename.',
4c79b5
4c79b5
	'LOAD'						=> 'Load',
4c79b5
	'LOAD_DRAFT'				=> 'Load draft',
4c79b5
	'LOAD_DRAFT_EXPLAIN'		=> 'Here you are able to select the draft you want to continue writing. Your current post will be cancelled, all current post contents will be deleted. View, edit and delete drafts within your User Control Panel.',
4c79b5
	'LOGIN_EXPLAIN_BUMP'		=> 'You need to login in order to bump topics within this forum.',
4c79b5
	'LOGIN_EXPLAIN_DELETE'		=> 'You need to login in order to delete posts within this forum.',
4c79b5
	'LOGIN_EXPLAIN_POST'		=> 'You need to login in order to post within this forum.',
4c79b5
	'LOGIN_EXPLAIN_QUOTE'		=> 'You need to login in order to quote posts within this forum.',
4c79b5
	'LOGIN_EXPLAIN_REPLY'		=> 'You need to login in order to reply to topics within this forum.',
4c79b5
4c79b5
	'MAX_FONT_SIZE_EXCEEDED'	=> 'You may only use fonts up to size %1$d.',
4c79b5
	'MAX_FLASH_HEIGHT_EXCEEDED'	=> 'Your flash files may only be up to %1$d pixels high.',
4c79b5
	'MAX_FLASH_WIDTH_EXCEEDED'	=> 'Your flash files may only be up to %1$d pixels wide.',
4c79b5
	'MAX_IMG_HEIGHT_EXCEEDED'	=> 'Your images may only be up to %1$d pixels high.',
4c79b5
	'MAX_IMG_WIDTH_EXCEEDED'	=> 'Your images may only be up to %1$d pixels wide.',
4c79b5
4c79b5
	'MESSAGE_BODY_EXPLAIN'		=> 'Enter your message here, it may contain no more than %d characters.',
4c79b5
	'MESSAGE_DELETED'			=> 'This message has been deleted successfully.',
4c79b5
	'MORE_SMILIES'				=> 'View more smilies',
4c79b5
4c79b5
	'NOTIFY_REPLY'				=> 'Notify me when a reply is posted',
4c79b5
	'NOT_UPLOADED'				=> 'File could not be uploaded.',
4c79b5
	'NO_DELETE_POLL_OPTIONS'	=> 'You cannot delete existing poll options.',
4c79b5
	'NO_PM_ICON'				=> 'No PM icon',
4c79b5
	'NO_POLL_TITLE'				=> 'You have to enter a poll title.',
4c79b5
	'NO_POST'					=> 'The requested post does not exist.',
4c79b5
	'NO_POST_MODE'				=> 'No post mode specified.',
4c79b5
4c79b5
	'PARTIAL_UPLOAD'			=> 'The uploaded file was only partially uploaded.',
4c79b5
	'PHP_SIZE_NA'				=> 'The attachment’s file size is too large.
Could not determine the maximum size defined by PHP in php.ini.',
4c79b5
	'PHP_SIZE_OVERRUN'			=> 'The attachment’s file size is too large, the maximum upload size is %d MB.
Please note this is set in php.ini and cannot be overridden.',
4c79b5
	'PLACE_INLINE'				=> 'Place inline',
4c79b5
	'POLL_DELETE'				=> 'Delete poll',
4c79b5
	'POLL_FOR'					=> 'Run poll for',
4c79b5
	'POLL_FOR_EXPLAIN'			=> 'Enter 0 or leave blank for a never ending poll.',
4c79b5
	'POLL_MAX_OPTIONS'			=> 'Options per user',
4c79b5
	'POLL_MAX_OPTIONS_EXPLAIN'	=> 'This is the number of options each user may select when voting.',
4c79b5
	'POLL_OPTIONS'				=> 'Poll options',
4c79b5
	'POLL_OPTIONS_EXPLAIN'		=> 'Place each option on a new line. You may enter up to %d options.',
4c79b5
	'POLL_OPTIONS_EDIT_EXPLAIN'	=> 'Place each option on a new line. You may enter up to %d options. If you remove or add options all previous votes will be reset.',
4c79b5
	'POLL_QUESTION'				=> 'Poll question',
4c79b5
	'POLL_TITLE_TOO_LONG'		=> 'The poll title must contain fewer than 100 characters.',
4c79b5
	'POLL_TITLE_COMP_TOO_LONG'	=> 'The parsed size of your poll title is too large, consider removing BBCodes or smilies.',
4c79b5
	'POLL_VOTE_CHANGE'			=> 'Allow re-voting',
4c79b5
	'POLL_VOTE_CHANGE_EXPLAIN'	=> 'If enabled users are able to change their vote.',
4c79b5
	'POSTED_ATTACHMENTS'		=> 'Posted attachments',
4c79b5
	'POST_APPROVAL_NOTIFY'		=> 'You will be notified when your post has been approved.',
4c79b5
	'POST_CONFIRMATION'			=> 'Confirmation of post',
4c79b5
	'POST_CONFIRM_EXPLAIN'		=> 'To prevent automated posts the board requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
4c79b5
	'POST_DELETED'				=> 'This message has been deleted successfully.',
4c79b5
	'POST_EDITED'				=> 'This message has been edited successfully.',
4c79b5
	'POST_EDITED_MOD'			=> 'This message has been edited successfully, but it will need to be approved by a moderator before it is publicly viewable.',
4c79b5
	'POST_GLOBAL'				=> 'Global',
4c79b5
	'POST_ICON'					=> 'Post icon',
4c79b5
	'POST_NORMAL'				=> 'Normal',
4c79b5
	'POST_REVIEW'				=> 'Post review',
4c79b5
	'POST_REVIEW_EXPLAIN'		=> 'At least one new post has been made to this topic. You may wish to review your post in light of this.',
4c79b5
	'POST_STORED'				=> 'This message has been posted successfully.',
4c79b5
	'POST_STORED_MOD'			=> 'This message has been submitted successfully, but it will need to be approved by a moderator before it is publicly viewable.',
4c79b5
	'POST_TOPIC_AS'				=> 'Post topic as',
4c79b5
	'PROGRESS_BAR'				=> 'Progress bar',
4c79b5
4c79b5
	'QUOTE_DEPTH_EXCEEDED'		=> 'You may embed only %1$d quotes within each other.',
4c79b5
4c79b5
	'SAVE'						=> 'Save',
4c79b5
	'SAVE_DATE'					=> 'Saved at',
4c79b5
	'SAVE_DRAFT'				=> 'Save draft',
4c79b5
	'SAVE_DRAFT_CONFIRM'		=> 'Please note that saved drafts only include the subject and the message, any other element will be removed. Do you want to save your draft now?',
4c79b5
	'SMILIES'					=> 'Smilies',
4c79b5
	'SMILIES_ARE_OFF'			=> 'Smilies are OFF',
4c79b5
	'SMILIES_ARE_ON'			=> 'Smilies are ON',
4c79b5
	'STICKY_ANNOUNCE_TIME_LIMIT'=> 'Sticky/Announcement time limit',
4c79b5
	'STICK_TOPIC_FOR'			=> 'Stick topic for',
4c79b5
	'STICK_TOPIC_FOR_EXPLAIN'	=> 'Enter 0 or leave blank for a never ending Sticky/Announcement.',
4c79b5
	'STYLES_TIP'				=> 'Tip: Styles can be applied quickly to selected text.',
4c79b5
4c79b5
	'TOO_FEW_CHARS'				=> 'Your message contains too few characters.',
4c79b5
	'TOO_FEW_POLL_OPTIONS'		=> 'You must enter at least two poll options.',
4c79b5
	'TOO_MANY_ATTACHMENTS'		=> 'Cannot add another attachment, %d is the maximum.',
4c79b5
	'TOO_MANY_CHARS'			=> 'Your message contains too many characters.',
4c79b5
	'TOO_MANY_CHARS_POST'		=> 'Your message contains %1$d characters. The maximum number of allowed characters is %2$d.',
4c79b5
	'TOO_MANY_CHARS_SIG'		=> 'Your signature contains %1$d characters. The maximum number of allowed characters is %2$d.',
4c79b5
	'TOO_MANY_POLL_OPTIONS'		=> 'You have tried to enter too many poll options.',
4c79b5
	'TOO_MANY_SMILIES'			=> 'Your message contains too many smilies. The maximum number of smilies allowed is %d.',
4c79b5
	'TOO_MANY_URLS'				=> 'Your message contains too many URLs. The maximum number of URLs allowed is %d.',
4c79b5
	'TOO_MANY_USER_OPTIONS'		=> 'You cannot specify more options per user than existing poll options.',
4c79b5
	'TOPIC_BUMPED'				=> 'Topic has been bumped successfully.',
4c79b5
4c79b5
	'UNAUTHORISED_BBCODE'		=> 'You cannot use certain BBCodes: %s.',
4c79b5
	'UNGLOBALISE_EXPLAIN'		=> 'To switch this topic back from being global to a normal topic, you need to select the forum you wish this topic to be displayed.',
4c79b5
	'UPDATE_COMMENT'			=> 'Update comment',
4c79b5
	'URL_INVALID'				=> 'The URL you specified is invalid.',
4c79b5
	'URL_NOT_FOUND'				=> 'The file specified could not be found.',
4c79b5
	'URL_IS_OFF'				=> '[url] is OFF',
4c79b5
	'URL_IS_ON'					=> '[url] is ON',
4c79b5
	'USER_CANNOT_BUMP'			=> 'You cannot bump topics in this forum.',
4c79b5
	'USER_CANNOT_DELETE'		=> 'You cannot delete posts in this forum.',
4c79b5
	'USER_CANNOT_EDIT'			=> 'You cannot edit posts in this forum.',
4c79b5
	'USER_CANNOT_REPLY'			=> 'You cannot reply in this forum.',
4c79b5
	'USER_CANNOT_FORUM_POST'	=> 'You are not able to do posting operations on this forum due to the forum type not supporting it.',
4c79b5
4c79b5
	'VIEW_MESSAGE'				=> '%sView your submitted message%s',
4c79b5
	'VIEW_PRIVATE_MESSAGE'		=> '%sView your submitted private message%s',
4c79b5
4c79b5
	'WRONG_FILESIZE'			=> 'The file is too big, maximum allowed size is %1d %2s.',
4c79b5
	'WRONG_SIZE'				=> 'The image must be at least %1$d pixels wide, %2$d pixels high and at most %3$d pixels wide and %4$d pixels high. The submitted image is %5$d pixels wide and %6$d pixels high.',
4c79b5
));
4c79b5
4c79b5
?>