Ignore:
Timestamp:
Mar 31, 2010, 6:32:40 PM (14 years ago)
Author:
george
Message:
  • Upraveno: Aktualizace fóra.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/forum/language/en/acp/posting.php

    r400 r702  
    55*
    66* @package language
    7 * @version $Id: posting.php 8743 2008-08-12 16:03:18Z Kellanved $
     7* @version $Id$
    88* @copyright (c) 2005 phpBB Group
    99* @license http://opensource.org/licenses/gpl-license.php GNU Public License
     
    4242        'ADD_BBCODE'                            => 'Add a new BBCode',
    4343
     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
    4447        'BBCODE_ADDED'                          => 'BBCode added successfully.',
    4548        'BBCODE_EDITED'                         => 'BBCode edited successfully.',
     
    6972        'TOKEN'                                 => 'Token',
    7073        '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>&lt;STRINGNAME&gt;</em>} where <em>&lt;STRINGNAME&gt;</em> is the name of the translated string you want to add. For example, {L_WROTE} will be displayed as &quot;wrote&quot; 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>&lt;STRINGNAME&gt;</em>} where <em>&lt;STRINGNAME&gt;</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>',
    7275        'TOKEN_DEFINITION'              => 'What can it be?',
    7376        'TOO_MANY_BBCODES'              => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
    7477
    7578        '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.',
    7780                '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.',
    7882                'IDENTIFIER'    => 'Characters from the latin alphabet (A-Z), numbers, hyphen and underscore',
    7983                'NUMBER'                => 'Any series of digits',
    8084                '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, &quot;http://&quot; 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.',
    8286                'LOCAL_URL'             => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol.',
    8387                '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>'
     
    181185        'SMILIES_WIDTH'                         => 'Smiley width',
    182186
     187        'TOO_MANY_SMILIES'                      => 'Limit of %d smilies reached.',
     188
    183189        'WRONG_PAK_TYPE'        => 'The specified package does not contain the appropriate data.',
    184190));
     
    186192// Word censors
    187193$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 be 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.',
     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.',
    189195        'ADD_WORD'                              => 'Add new word',
    190196
     
    218224        'RANK_IMAGE'                    => 'Rank image',
    219225        '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)',
    220227        'RANK_MINIMUM'                  => 'Minimum posts',
    221228        'RANK_REMOVED'                  => 'The rank was successfully deleted.',
Note: See TracChangeset for help on using the changeset viewer.