[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

/language/en/acp/ -> posting.php (source)

   1  <?php
   2  /** 
   3  *
   4  * posting [English]
   5  *
   6  * @package language
   7  * @version $Id: posting.php,v 1.21 2006/10/08 19:04:49 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  // BBCodes 
  34  // Note to translators: you can translate everything but what's between { and }
  35  $lang = array_merge($lang, array(
  36      'ACP_BBCODES_EXPLAIN'        => 'BBCode is a special implementation of HTML offering greater control over what and how something is displayed. From this page you can add, remove and edit custom BBCodes',
  37      'ADD_BBCODE'                => 'Add a new BBCode',
  38  
  39      'BBCODE_ADDED'                => 'BBCode added successfully.',
  40      'BBCODE_EDITED'                => 'BBCode edited successfully.',
  41      'BBCODE_INVALID_TAG_NAME'    => 'The BBCode tag name that you selected already exists.',
  42      'BBCODE_NOT_EXIST'            => 'The BBCode you selected does not exist.',
  43      'BBCODE_HELPLINE'            => 'Helpline',
  44      'BBCODE_HELPLINE_EXPLAIN'    => 'This field contains the mouseover text of the BBCode',
  45      'BBCODE_HELPLINE_TEXT'        => 'Helpline text',
  46      'BBCODE_TAG'                => 'Tag',
  47      'BBCODE_TAG_TOO_LONG'        => 'The tag definition that you have entered is too long, please shorten your tag definition.',
  48      'BBCODE_USAGE'                => 'BBCode usage',
  49      'BBCODE_USAGE_EXAMPLE'        => '[colour={COLOR}]{TEXT}[/colour]<br /><br />[font={TEXT1}]{TEXT2}[/font]',
  50      'BBCODE_USAGE_EXPLAIN'        => 'Here you define how to use the bbcode. Replace any variable input by the corresponding token (%ssee below%s)',
  51  
  52      'EXAMPLE'                        => 'Example:',
  53      'EXAMPLES'                        => 'Examples:',
  54  
  55      'HTML_REPLACEMENT'                => 'HTML replacement',
  56      'HTML_REPLACEMENT_EXAMPLE'        => '&lt;font color="{COLOR}"&gt;{TEXT}&lt;/font&gt;<br /><br />&lt;font face="{TEXT1}"&gt;{TEXT2}&lt;/font&gt;',
  57      'HTML_REPLACEMENT_EXPLAIN'        => 'Here you define the default HTML replacement (each template can have its own HTML replacement). Do not forget to put back tokens you used above!',
  58  
  59      'TOKEN'                    => 'Token',
  60      'TOKENS'                => 'Tokens',
  61      '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. {USERNAME1}, {USERNAME2}.<br /><br />In addition to these tokens you can use any of lang 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',
  62      'TOKEN_DEFINITION'        => 'What can it be?',
  63      'TOO_MANY_BBCODES'        => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
  64  
  65      'tokens'    =>    array(
  66          'TEXT'            => 'Any text, including foreign characters, numbers, etc…',
  67          'NUMBER'        => 'Any series of digits',
  68          'EMAIL'            => 'A valid email address',
  69          'URL'            => 'A valid URL using any protocol (http, ftp, etc… cannot be used for javascript exploits). If none is given, "http://" is prepended to to the string',
  70          'LOCAL_URL'        => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol',
  71          'COLOR'            => 'A HTML color, 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>'
  72      )
  73  ));
  74  
  75  // Smilies and topic icons
  76  $lang = array_merge($lang, array(
  77      'ACP_ICONS_EXPLAIN'        => 'From this page you can add, remove and edit the icons users may add to their topics or posts. These icons are generally displayed next to topic titles on the forum listing, or the post subjects in topic listings. You can also install and create new packages of icons.',
  78      'ACP_SMILIES_EXPLAIN'    => 'Smilies or emoticons are typically small, sometimes animated images used to convey an emotion or feeling. From this page you can add, remove and edit the emoticons users can use in their posts and private messages. You can also install and create new packages of smilies.',
  79      'ADD_SMILIES'            => 'Add multiple smilies',
  80      'ADD_ICONS'                => 'Add multiple icons',
  81      'AFTER_ICONS'            => 'After %s',
  82      'AFTER_SMILIES'            => 'After %s',
  83  
  84      'CODE'                        => 'Code',
  85      'CURRENT_ICONS'                => 'Current icons',
  86      'CURRENT_ICONS_EXPLAIN'        => 'Choose what to do with the currently installed icons',
  87      'CURRENT_SMILIES'            => 'Current smilies',
  88      'CURRENT_SMILIES_EXPLAIN'    => 'Choose what to do with the currently installed smilies',
  89  
  90      'DISPLAY_ON_POSTING'    => 'Display on posting',
  91  
  92      'EDIT_ICONS'                => 'Edit icons',
  93      'EDIT_SMILIES'                => 'Edit smilies',
  94      'EMOTION'                    => 'Emotion',
  95      'EXPORT_ICONS'                => 'Export and download icons.pak',
  96      'EXPORT_ICONS_EXPLAIN'        => '%sOn clicking this link, the configuration for your installed icons will be packaged into <samp>icons.pak</samp> which once downloaded can be used to create a <samp>.zip</samp> or <samp>.tgz</samp> file containing all of your icons plus this <samp>icons.pak</samp> configuration file%s.',
  97      'EXPORT_SMILIES'            => 'Export and download smilies.pak',
  98      'EXPORT_SMILIES_EXPLAIN'    => '%sOn clicking this link, the configuration for your installed smilies will be packaged into <samp>smilies.pak</samp> which once downloaded can be used to create a <samp>.zip</samp> or <samp>.tgz</samp> file containing all of your smilies plus this <samp>icons.pak</samp> configuration file%s.',
  99  
 100      'FIRST'            => 'First',
 101  
 102      'ICONS_ADD'                => 'Add a new Icon',
 103      'ICONS_ADDED'            => 'The icon has been added successfully.',
 104      'ICONS_CONFIG'            => 'Icon configuration',
 105      'ICONS_DELETED'            => 'The icon has been removed successfully.',
 106      'ICONS_EDIT'            => 'Edit icon',
 107      'ICONS_EDITED'            => 'The icon has been updated successfully.',
 108      'ICONS_HEIGHT'            => 'Icon height',
 109      'ICONS_IMAGE'            => 'Icon image',
 110      'ICONS_IMPORTED'        => 'The icons pack has been installed successfully.',
 111      'ICONS_IMPORT_SUCCESS'    => 'The icons pack was imported successfully.',
 112      'ICONS_LOCATION'        => 'Icon location',
 113      'ICONS_NOT_DISPLAYED'    => 'The following icons are not displayed on the posting page',
 114      'ICONS_ORDER'            => 'Icon order',
 115      'ICONS_URL'                => 'Icon image file',
 116      'ICONS_WIDTH'            => 'Icon width',
 117      'IMPORT_ICONS'            => 'Install icons pak',
 118      'IMPORT_SMILIES'        => 'Install smilies pak',
 119  
 120      'KEEP_ALL'            => 'Keep all',
 121  
 122      'MASS_ADD_SMILIES'    => 'Add multiple smilies',
 123  
 124      'NO_ICONS_EXPORT'    => 'You have no icons with which to create a package.',
 125      'NO_ICONS_PAK'        => 'No icon packages found.',
 126      'NO_SMILIES_EXPORT'    => 'You have no smilies with which to create a package.',
 127      'NO_SMILIES_PAK'    => 'No smiley packages found.',
 128  
 129      'PAK_FILE_NOT_READABLE'        => 'Could not read pak file.',
 130  
 131      'REPLACE_MATCHES'    => 'Replace matches',
 132  
 133      'SELECT_PACKAGE'            => 'Select a package file',
 134      'SMILIES_ADD'                => 'Add a new smiley',
 135      'SMILIES_ADDED'                => 'The smiley has been added successfully.',
 136      'SMILIES_CODE'                => 'Smiley code',
 137      'SMILIES_CONFIG'            => 'Smiley configuration',
 138      'SMILIES_DELETED'            => 'The smiley has been removed successfully.',
 139      'SMILIES_EDIT'                => 'Edit Smiley',
 140      'SMILIES_EDITED'            => 'The smiley has been updated successfully.',
 141      'SMILIES_EMOTION'            => 'Emotion',
 142      'SMILIES_HEIGHT'            => 'Smiley height',
 143      'SMILIES_IMAGE'                => 'Smiley image',
 144      'SMILIES_IMPORTED'            => 'The smilies pack has been installed successfully.',
 145      'SMILIES_IMPORT_SUCCESS'    => 'The smilies pack was imported successfully.',
 146      'SMILIES_LOCATION'            => 'Smiley location',
 147      'SMILIES_NOT_DISPLAYED'        => 'The following smilies are not displayed on the posting page',
 148      'SMILIES_ORDER'                => 'Smiley order',
 149      'SMILIES_URL'                => 'Smiley image file',
 150      'SMILIES_WIDTH'                => 'Smiley width',
 151  
 152      'WRONG_PAK_TYPE'    => 'The specified package does not contain the appropriate data.',
 153  ));
 154  
 155  // Word censors
 156  $lang = array_merge($lang, array(
 157      '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, eg. *test* will match detestable, test* would match testing, *test would match detest.',
 158      'ADD_WORD'                => 'Add new word',
 159  
 160      'EDIT_WORD'        => 'Edit word censor',
 161      'ENTER_WORD'    => 'You must enter a word and its replacement.',
 162  
 163      'NO_WORD'    => 'No word selected for editing.',
 164  
 165      'REPLACEMENT'    => 'Replacement',
 166  
 167      'UPDATE_WORD'    => 'Update word censor',
 168  
 169      'WORD'                => 'Word',
 170      'WORD_ADDED'        => 'The word censor has been successfully added.',
 171      'WORD_REMOVED'        => 'The selected word censor has been successfully removed.',
 172      'WORD_UPDATED'        => 'The selected word censor has been successfully updated.',
 173  ));
 174  
 175  // Ranks
 176  $lang = array_merge($lang, array(
 177      'ACP_RANKS_EXPLAIN'        => 'Using this form you can add, edit, view and delete ranks. You can also create custom ranks which can be applied to a user via the user management facility.',
 178      'ADD_RANK'                => 'Add new rank',
 179  
 180      'MUST_SELECT_RANK'        => 'You must select a rank.',
 181      
 182      'NO_ASSIGNED_RANK'        => 'No special rank assigned.',
 183      'NO_RANK_TITLE'            => 'You haven’t specified a title for the rank.',
 184      'NO_UPDATE_RANKS'        => 'The rank was successfully deleted. However user accounts using this rank were not updated.  You will need to manually reset the rank on these accounts.',
 185  
 186      'RANK_ADDED'            => 'The rank was successfully added.',
 187      'RANK_IMAGE'            => 'Rank image',
 188      'RANK_IMAGE_EXPLAIN'    => 'Use this to define a small image associated with the rank. The path is relative to the root phpBB directory.',
 189      'RANK_MINIMUM'            => 'Minimum posts',
 190      'RANK_REMOVED'            => 'The rank was successfully deleted.',
 191      'RANK_SPECIAL'            => 'Set as special rank',
 192      'RANK_TITLE'            => 'Rank title',
 193      'RANK_UPDATED'            => 'The rank was successfully updated.',
 194  ));
 195  
 196  // Disallow Usernames
 197  $lang = array_merge($lang, array(
 198      'ACP_DISALLOW_EXPLAIN'    => 'Here you can control usernames which will not be allowed to be used.  Disallowed usernames are allowed to contain a wildcard character of *.  Please note that you will not be allowed to specify any username that has already been registered, you must first delete that name then disallow it',
 199      'ADD_DISALLOW_EXPLAIN'    => 'You can disallow a username using the wildcard character * to match any character',
 200      'ADD_DISALLOW_TITLE'    => 'Add a disallowed username',
 201  
 202      'DELETE_DISALLOW_EXPLAIN'    => 'You can remove a disallowed username by selecting the username from this list and clicking submit',
 203      'DELETE_DISALLOW_TITLE'        => 'Remove a disallowed username',
 204      'DISALLOWED_ALREADY'        => 'The name you entered could not be disallowed. It either already exists in the list, exists in the word censor list, or a matching username is present.',
 205      'DISALLOWED_DELETED'        => 'The disallowed username has been successfully removed.',
 206      'DISALLOW_SUCCESSFUL'        => 'The disallowed username has been successfully added.',
 207  
 208      'NO_DISALLOWED'                => 'No disallowed usernames',
 209      'NO_USERNAME_SPECIFIED'        => 'You haven’t selected or entered a username to operate with.',
 210  ));
 211  
 212  // Reasons
 213  $lang = array_merge($lang, array(
 214      'ACP_REASONS_EXPLAIN'    => 'Here you can manage the reasons used in reports and denial messages when disapproving posts. There is one default reason (marked with a *) you are not able to remove, this reason is normally used for custom messages if no reason fits.',
 215      'ADD_NEW_REASON'        => 'Add new reason',
 216      'AVAILABLE_TITLES'        => 'Available localized reason titles',
 217      
 218      'IS_NOT_TRANSLATED'            => 'Reason has <samp>not</samp> been localised.',
 219      'IS_NOT_TRANSLATED_EXPLAIN'    => 'Reason has <samp>not</samp> been localised. If you want to provide the localized form, specify the correct key from the language files report reasons section.',
 220      'IS_TRANSLATED'                => 'Reason has been localised.',
 221      'IS_TRANSLATED_EXPLAIN'        => 'Reason has been localised. If the title you enter here is specified within the language files report reasons section, the localized form of the title and description will be used.',
 222      
 223      'NO_REASON'                    => 'Reason could not be found.',
 224      'NO_REASON_INFO'            => 'You have to specify a title and a description for this reason.',
 225      'NO_REMOVE_DEFAULT_REASON'    => 'You are not able to remove the default reason "Other".',
 226  
 227      'REASON_ADD'                => 'Add report/denial reason',
 228      'REASON_ADDED'                => 'Report/denial reason successfully added.',
 229      'REASON_ALREADY_EXIST'        => 'A reason with this title already exist, please enter another title for this reason.',
 230      'REASON_DESCRIPTION'        => 'Reason description',
 231      'REASON_DESC_TRANSLATED'    => 'Displayed reason description',
 232      'REASON_EDIT'                => 'Edit report/denial reason',
 233      'REASON_EDIT_EXPLAIN'        => 'Here you are able to add or edit a reason. If the reason is translated the localized version is used instead of the description entered here.',
 234      'REASON_REMOVED'            => 'Report/denial reason successfully removed.',
 235      'REASON_TITLE'                => 'Reason title',
 236      'REASON_TITLE_TRANSLATED'    => 'Displayed reason title',
 237      'REASON_UPDATED'            => 'Report/denial reason successfully updated.',
 238  
 239      'USED_IN_REPORTS'        => 'Used in reports',
 240  ));
 241  
 242  ?>


Generated: Wed Nov 22 00:35:05 2006 Cross-referenced by PHPXref 0.6