[ Index ] |
PHP Cross Reference of phpBB 3.0 Beta 3 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * posting [English] 5 * 6 * @package language 7 * @version $Id: posting.php,v 1.43 2006/10/06 18:43:54 acydburn Exp $ 8 * @copyright (c) 2005 phpBB Group 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License 10 * 11 */ 12 13 /** 14 * DO NOT CHANGE 15 */ 16 if (empty($lang) || !is_array($lang)) 17 { 18 $lang = array(); 19 } 20 21 // DEVELOPERS PLEASE NOTE 22 // 23 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 24 // 25 // Placeholders can now contain order information, e.g. instead of 26 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 27 // translators to re-order the output of data while ensuring it remains correct 28 // 29 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 30 // equally where a string contains only two placeholders which are used to wrap text 31 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 32 33 $lang = array_merge($lang, array( 34 'ADD_ATTACHMENT' => 'Upload attachment', 35 'ADD_ATTACHMENT_EXPLAIN' => 'If you wish to attach one or more files enter the details below', 36 'ADD_FILE' => 'Add the file', 37 'ADD_POLL' => 'Poll creation', 38 'ADD_POLL_EXPLAIN' => 'If you do not want to add a poll to your topic leave the fields blank', 39 'ALREADY_DELETED' => 'Sorry but this message is already deleted.', 40 'ATTACH_QUOTA_REACHED' => 'Sorry, the board attachment quota has been reached.', 41 'ATTACH_SIG' => 'Attach a signature (signatures can be altered via the UCP)', 42 43 'BBCODE_A_HELP' => 'Close all open BBCode tags', 44 'BBCODE_B_HELP' => 'Bold text: [b]text[/b] (alt+b)', 45 'BBCODE_C_HELP' => 'Code display: [code]code[/code] (alt+c)', 46 'BBCODE_E_HELP' => 'List: Add list element', 47 'BBCODE_F_HELP' => 'Font size: [size=x-small]small text[/size]', 48 'BBCODE_IS_OFF' => '%sBBCode%s is <em>OFF</em>', 49 'BBCODE_IS_ON' => '%sBBCode%s is <em>ON</em>', 50 'BBCODE_I_HELP' => 'Italic text: [i]text[/i] (alt+i)', 51 'BBCODE_L_HELP' => 'List: [list]text[/list] (alt+l)', 52 'BBCODE_O_HELP' => 'Ordered list: [list=]text[/list] (alt+o)', 53 'BBCODE_P_HELP' => 'Insert image: [img]http://image_url[/img] (alt+p)', 54 'BBCODE_Q_HELP' => 'Quote text: [quote]text[/quote] (alt+q)', 55 'BBCODE_S_HELP' => 'Font color: [color=red]text[/color] Tip: you can also use color=#FF0000', 56 'BBCODE_U_HELP' => 'Underline text: [u]text[/u] (alt+u)', 57 'BBCODE_W_HELP' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (alt+w)', 58 'BBCODE_D_HELP' => 'Flash: [flash=width,height]http://url[/flash] (alt+d)', 59 'BUMP_ERROR' => 'You cannot bump this topic so soon after the last post.', 60 61 'CANNOT_DELETE_REPLIED' => 'Sorry but you may only delete posts which have not been replied to.', 62 'CANNOT_EDIT_POST_LOCKED' => 'This post has been locked. You can no longer edit that post.', 63 'CANNOT_EDIT_TIME' => 'You can no longer edit or delete that post', 64 'CANNOT_POST_ANNOUNCE' => 'Sorry but you cannot post announcements.', 65 'CANNOT_POST_NEWS' => 'Sorry but you cannot post news topics.', 66 'CANNOT_POST_STICKY' => 'Sorry but you cannot post sticky topics.', 67 'CHANGE_TOPIC_TO' => 'Change topic type to', 68 'CLOSE_TAGS' => 'Close tags', 69 'CURRENT_TOPIC' => 'Current topic', 70 71 'DELETE_FILE' => 'Delete file', 72 'DELETE_MESSAGE' => 'Delete message', 73 'DELETE_MESSAGE_CONFIRM' => 'Are you sure you want to delete this message?', 74 'DELETE_OWN_POSTS' => 'Sorry but you can only delete your own posts.', 75 'DELETE_POST_CONFIRM' => 'Are you sure you want to delete this message?', 76 'DELETE_POST_WARN' => 'Once deleted the post cannot be recovered', 77 'DISABLE_BBCODE' => 'Disable BBCode', 78 'DISABLE_MAGIC_URL' => 'Do not automatically parse URLs', 79 'DISABLE_SMILIES' => 'Disable smilies', 80 'DISALLOWED_EXTENSION' => 'The extension %s is not allowed', 81 'DRAFT_LOADED' => 'Draft loaded into posting area, you may want to finish your post now.<br />Your draft will be deleted after submitting this post.', 82 'DRAFT_SAVED' => 'Draft successfully saved.', 83 'DRAFT_TITLE' => 'Draft title', 84 85 'EDIT_REASON' => 'Reason for editing this post', 86 'EMPTY_FILEUPLOAD' => 'The uploaded file is empty', 87 'EMPTY_MESSAGE' => 'You must enter a message when posting.', 88 'EMPTY_REMOTE_DATA' => 'File could not be uploaded, please try uploading the file manually.', 89 90 'FLASH_IS_OFF' => '[flash] is <em>OFF</em>', 91 'FLASH_IS_ON' => '[flash] is <em>ON</em>', 92 'FLOOD_ERROR' => 'You cannot make another post so soon after your last.', 93 'FONT_COLOR' => 'Font color', 94 'FONT_HUGE' => 'Huge', 95 'FONT_LARGE' => 'Large', 96 'FONT_NORMAL' => 'Normal', 97 'FONT_SIZE' => 'Font size', 98 'FONT_SMALL' => 'Small', 99 'FONT_TINY' => 'Tiny', 100 101 'GENERAL_UPLOAD_ERROR' => 'Could not upload attachment to %s', 102 103 'IMAGES_ARE_OFF' => '[img] is <em>OFF</em>', 104 'IMAGES_ARE_ON' => '[img] is <em>ON</em>', 105 'INVALID_FILENAME' => '%s is an invalid filename', 106 107 'LOAD' => 'Load', 108 'LOAD_DRAFT' => 'Load draft', 109 'LOAD_DRAFT_EXPLAIN' => 'Here you are able to select the draft you want to continue writing. Your current post will be canceled, all current post contents will be deleted. View, edit and delete drafts within your User Control Panel.', 110 'LOGIN_EXPLAIN_POST' => 'You need to login in order to post within this forum', 111 'LOGIN_EXPLAIN_REPLY' => 'You need to login in order to reply to topics within this forum', 112 113 'MAX_FONT_SIZE_EXCEEDED' => 'You may only use fonts up to size %1$d.', 114 'MAX_FLASH_HEIGHT_EXCEEDED' => 'Your flash files may only be up to %1$d pixels high.', 115 'MAX_FLASH_WIDTH_EXCEEDED' => 'Your flash files may only be up to %1$d pixels wide.', 116 'MAX_IMG_HEIGHT_EXCEEDED' => 'Your images may only be up to %1$d pixels high.', 117 'MAX_IMG_WIDTH_EXCEEDED' => 'Your images may only be up to %1$d pixels wide.', 118 119 'MESSAGE_BODY_EXPLAIN' => 'Enter your message here, it may contain no more than <strong>%d</strong> characters.', 120 'MESSAGE_DELETED' => 'Your message has been deleted successfully', 121 'MORE_SMILIES' => 'View more smilies', 122 123 'NOTIFY_REPLY' => 'Send me an email when a reply is posted', 124 'NOT_UPLOADED' => 'File could not be uploaded.', 125 'NO_DELETE_POLL_OPTIONS' => 'You cannot delete existing poll options', 126 'NO_POLL_TITLE' => 'You have to enter a poll title', 127 'NO_POST' => 'The requested post does not exist.', 128 'NO_POST_MODE' => 'No post mode specified', 129 'NO_TOPIC_ICON' => 'None', 130 131 'PARTIAL_UPLOAD' => 'The uploaded file was only partially uploaded', 132 'PHP_SIZE_NA' => 'The attachment’s filesize is too large.<br />Could not determine the maximum size defined by PHP in php.ini.', 133 'PHP_SIZE_OVERRUN' => 'The attachment’s filesize is too large, the maximum upload size is %d MB.<br />Please note this is set in php.ini and cannot be overriden.', 134 'PLACE_INLINE' => 'Place inline', 135 'POLL_DELETE' => 'Delete poll', 136 'POLL_FOR' => 'Run poll for', 137 'POLL_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending poll', 138 'POLL_MAX_OPTIONS' => 'Options per user', 139 'POLL_MAX_OPTIONS_EXPLAIN' => 'This is the number of options each user may select when voting.', 140 'POLL_OPTIONS' => 'Poll options', 141 'POLL_OPTIONS_EXPLAIN' => 'Place each option on a new line. You may enter up to <strong>%d</strong> options', 142 'POLL_QUESTION' => 'Poll question', 143 'POLL_VOTE_CHANGE' => 'Allow re-voting', 144 'POLL_VOTE_CHANGE_EXPLAIN' => 'If enabled users are able to change their vote.', 145 'POSTED_ATTACHMENTS' => 'Posted attachments', 146 'POST_CONFIRMATION' => 'Confirmation of post', 147 'POST_CONFIRM_EXPLAIN' => 'To prevent automated posts the board administrator 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.', 148 'POST_DELETED' => 'Your message has been deleted successfully', 149 'POST_EDITED' => 'Your message has been edited successfully', 150 'POST_EDITED_MOD' => 'Your message has been edited but requires approval', 151 'POST_GLOBAL' => 'Global', 152 'POST_ICON' => 'Post icon', 153 'POST_NORMAL' => 'Normal', 154 'POST_REPLY' => 'Post a reply', 155 'POST_REVIEW' => 'Post review', 156 '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.', 157 'POST_STORED' => 'Your message has been posted successfully', 158 'POST_STORED_MOD' => 'Your message has been saved but requires approval', 159 'POST_TOPIC' => 'Post a new topic', 160 'POST_TOPIC_AS' => 'Post topic as', 161 'PROGRESS_BAR' => 'Progress bar', 162 163 'QUOTE_DEPTH_EXCEEDED' => 'You may embed only %1$d quotes within each other.', 164 165 'SAVE' => 'Save', 166 'SAVE_DATE' => 'Saved at', 167 'SAVE_DRAFT' => 'Save Draft', 168 '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?', 169 'SMILIES' => 'Smilies', 170 'SMILIES_ARE_OFF' => 'Smilies are <em>OFF</em>', 171 'SMILIES_ARE_ON' => 'Smilies are <em>ON</em>', 172 'STICKY_ANNOUNCE_TIME_LIMIT'=> 'Sticky/Announcement time limit', 173 'STICK_TOPIC_FOR' => 'Stick topic for', 174 'STICK_TOPIC_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending Sticky/Announcement', 175 'STYLES_TIP' => 'Tip: Styles can be applied quickly to selected text', 176 177 'TOO_FEW_CHARS' => 'Your message contains too few characters.', 178 'TOO_FEW_POLL_OPTIONS' => 'You must enter at least two poll options', 179 'TOO_MANY_ATTACHMENTS' => 'Cannot add another attachment, %d is the maxmimum.', 180 'TOO_MANY_CHARS' => 'Your message contains too many characters.', 181 'TOO_MANY_POLL_OPTIONS' => 'You have tried to enter too many poll options', 182 'TOO_MANY_SMILIES' => 'Your message contains too many smilies. A maximum of %d smilies are allowed.', 183 'TOO_MANY_URLS' => 'Your message contains too many urls. A maximum of %d urls are allowed.', 184 'TOO_MANY_USER_OPTIONS' => 'You cannot specify more Options per User than existing poll options', 185 'TOPIC_BUMPED' => 'Topic has been bumped successfully', 186 187 'UNAUTHORISED_BBCODE' => 'You cannot use certain bbcodes: ', 188 '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.', 189 'UPDATE_COMMENT' => 'Update comment', 190 'URL_INVALID' => 'The URL you specified is invalid.', 191 'URL_NOT_FOUND' => 'The file specified could not be found.', 192 'URL_IS_OFF' => '[url] is <em>OFF</em>', 193 'URL_IS_ON' => '[url] is <em>ON</em>', 194 'USER_CANNOT_BUMP' => 'You cannot bump topics in this forum', 195 'USER_CANNOT_DELETE' => 'You cannot delete posts in this forum', 196 'USER_CANNOT_EDIT' => 'You cannot edit posts in this forum', 197 'USER_CANNOT_REPLY' => 'You cannot reply in this forum', 198 'USER_CANNOT_FORUM_POST' => 'You are not able to do posting operations on this forum due to the forum type not supporting it.', 199 200 'VIEW_MESSAGE' => '%sView your submitted message%s', 201 202 'WRONG_FILESIZE' => 'The file is too big, maximum allowed size is %1d %2s', 203 '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.', 204 )); 205 206 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 22 00:35:05 2006 | Cross-referenced by PHPXref 0.6 |