Changeset 702 for trunk/forum/language/en/acp/posting.php
- Timestamp:
- Mar 31, 2010, 6:32:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/forum/language/en/acp/posting.php
r400 r702 5 5 * 6 6 * @package language 7 * @version $Id : posting.php 8743 2008-08-12 16:03:18Z Kellanved$7 * @version $Id$ 8 8 * @copyright (c) 2005 phpBB Group 9 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License … … 42 42 'ADD_BBCODE' => 'Add a new BBCode', 43 43 44 'BBCODE_DANGER' => 'The BBCode you are trying to add seems to use a {TEXT} token inside a HTML attribute. This is a possible XSS security issue. Try using the more restrictive {SIMPLETEXT} or {INTTEXT} types instead. Only proceed if you understand the risks involved and you consider the use of {TEXT} absolutely unavoidable.', 45 'BBCODE_DANGER_PROCEED' => 'Proceed', //'I understand the risk', 46 44 47 'BBCODE_ADDED' => 'BBCode added successfully.', 45 48 'BBCODE_EDITED' => 'BBCode edited successfully.', … … 69 72 'TOKEN' => 'Token', 70 73 'TOKENS' => 'Tokens', 71 'TOKENS_EXPLAIN' => 'Tokens are placeholders for user input. The input will be validated only if it matches the corresponding definition. If needed, you can number them by adding a number as the last character between the braces, e.g. {TEXT1}, {TEXT2}.<br /><br />Within the HTML replacement you can also use any language string present in your language/ directory like this: {L_<em><STRINGNAME></em>} where <em><STRINGNAME></em> is the name of the translated string you want to add. For example, {L_WROTE} will be displayed as "wrote"or its translation according to user’s locale.<br /><br /><strong>Please note that only tokens listed below are able to be used within custom BBCodes.</strong>',74 'TOKENS_EXPLAIN' => 'Tokens are placeholders for user input. The input will be validated only if it matches the corresponding definition. If needed, you can number them by adding a number as the last character between the braces, e.g. {TEXT1}, {TEXT2}.<br /><br />Within the HTML replacement you can also use any language string present in your language/ directory like this: {L_<em><STRINGNAME></em>} where <em><STRINGNAME></em> is the name of the translated string you want to add. For example, {L_WROTE} will be displayed as “wrote” or its translation according to user’s locale.<br /><br /><strong>Please note that only tokens listed below are able to be used within custom BBCodes.</strong>', 72 75 'TOKEN_DEFINITION' => 'What can it be?', 73 76 'TOO_MANY_BBCODES' => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.', 74 77 75 78 'tokens' => array( 76 'TEXT' => 'Any text, including foreign characters, numbers, etc… You should not use this token in HTML tags. Instead try to use IDENTIFIER or SIMPLETEXT.',79 'TEXT' => 'Any text, including foreign characters, numbers, etc… You should not use this token in HTML tags. Instead try to use IDENTIFIER, INTTEXT or SIMPLETEXT.', 77 80 'SIMPLETEXT' => 'Characters from the latin alphabet (A-Z), numbers, spaces, commas, dots, minus, plus, hyphen and underscore', 81 'INTTEXT' => 'Unicode letter characters, numbers, spaces, commas, dots, minus, plus, hyphen, underscore and whitespaces.', 78 82 'IDENTIFIER' => 'Characters from the latin alphabet (A-Z), numbers, hyphen and underscore', 79 83 'NUMBER' => 'Any series of digits', 80 84 'EMAIL' => 'A valid e-mail address', 81 'URL' => 'A valid URL using any protocol (http, ftp, etc… cannot be used for javascript exploits). If none is given, "http://"is prefixed to the string.',85 'URL' => 'A valid URL using any protocol (http, ftp, etc… cannot be used for javascript exploits). If none is given, “http://” is prefixed to the string.', 82 86 'LOCAL_URL' => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol.', 83 87 'COLOR' => 'A HTML colour, can be either in the numeric form <samp>#FF1234</samp> or a <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-color">CSS colour keyword</a> such as <samp>fuchsia</samp> or <samp>InactiveBorder</samp>' … … 181 185 'SMILIES_WIDTH' => 'Smiley width', 182 186 187 'TOO_MANY_SMILIES' => 'Limit of %d smilies reached.', 188 183 189 'WRONG_PAK_TYPE' => 'The specified package does not contain the appropriate data.', 184 190 )); … … 186 192 // Word censors 187 193 $lang = array_merge($lang, array( 188 'ACP_WORDS_EXPLAIN' => 'From this control panel you can add, edit, and remove words that will be automatically censored on your forums. In addition people will not beallowed to register with usernames containing these words. Wildcards (*) are accepted in the word field, e.g. *test* will match detestable, test* would match testing, *test would match detest.',194 'ACP_WORDS_EXPLAIN' => 'From this control panel you can add, edit, and remove words that will be automatically censored on your forums. People are still allowed to register with usernames containing these words. Wildcards (*) are accepted in the word field, e.g. *test* will match detestable, test* would match testing, *test would match detest.', 189 195 'ADD_WORD' => 'Add new word', 190 196 … … 218 224 'RANK_IMAGE' => 'Rank image', 219 225 'RANK_IMAGE_EXPLAIN' => 'Use this to define a small image associated with the rank. The path is relative to the root phpBB directory.', 226 'RANK_IMAGE_IN_USE' => '(In use)', 220 227 'RANK_MINIMUM' => 'Minimum posts', 221 228 'RANK_REMOVED' => 'The rank was successfully deleted.',
Note:
See TracChangeset
for help on using the changeset viewer.