[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

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

   1  <?php
   2  /**
   3  *
   4  * This file is part of the phpBB Forum Software package.
   5  *
   6  * @copyright (c) phpBB Limited <https://www.phpbb.com>
   7  * @license GNU General Public License, version 2 (GPL-2.0)
   8  *
   9  * For full copyright and license information, please see
  10  * the docs/CREDITS.txt file.
  11  *
  12  */
  13  
  14  /**
  15  * DO NOT CHANGE
  16  */
  17  if (!defined('IN_PHPBB'))
  18  {
  19      exit;
  20  }
  21  
  22  if (empty($lang) || !is_array($lang))
  23  {
  24      $lang = array();
  25  }
  26  
  27  // DEVELOPERS PLEASE NOTE
  28  //
  29  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  30  //
  31  // Placeholders can now contain order information, e.g. instead of
  32  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  33  // translators to re-order the output of data while ensuring it remains correct
  34  //
  35  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  36  // equally where a string contains only two placeholders which are used to wrap text
  37  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  38  
  39  // BBCodes
  40  // Note to translators: you can translate everything but what's between { and }
  41  $lang = array_merge($lang, array(
  42      '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.',
  43      'ADD_BBCODE'                => 'Add a new BBCode',
  44  
  45      '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.',
  46      'BBCODE_DANGER_PROCEED'        => 'Proceed', //'I understand the risk',
  47  
  48      'BBCODE_ADDED'                => 'BBCode added successfully.',
  49      'BBCODE_EDITED'                => 'BBCode edited successfully.',
  50      'BBCODE_DELETED'            => 'The BBCode has been removed successfully.',
  51      'BBCODE_NOT_EXIST'            => 'The BBCode you selected does not exist.',
  52      'BBCODE_HELPLINE'            => 'Help line',
  53      'BBCODE_HELPLINE_EXPLAIN'    => 'This field contains the mouse over text of the BBCode.',
  54      'BBCODE_HELPLINE_TEXT'        => 'Help line text',
  55      'BBCODE_HELPLINE_TOO_LONG'    => 'The help line you entered is too long.',
  56  
  57      'BBCODE_INVALID_TAG_NAME'    => 'The BBCode tag name that you selected already exists.',
  58      'BBCODE_INVALID'            => 'Your BBCode is constructed in an invalid form.',
  59      'BBCODE_OPEN_ENDED_TAG'        => 'Your custom BBCode must contain both an opening and a closing tag.',
  60      'BBCODE_TAG'                => 'Tag',
  61      'BBCODE_TAG_TOO_LONG'        => 'The tag name you selected is too long.',
  62      'BBCODE_TAG_DEF_TOO_LONG'    => 'The tag definition that you have entered is too long, please shorten your tag definition.',
  63      'BBCODE_USAGE'                => 'BBCode usage',
  64      'BBCODE_USAGE_EXAMPLE'        => '[highlight={COLOR}]{TEXT}[/highlight]<br /><br />[font={SIMPLETEXT1}]{SIMPLETEXT2}[/font]',
  65      'BBCODE_USAGE_EXPLAIN'        => 'Here you define how to use the BBCode. Replace any variable input by the corresponding token (%ssee below%s).',
  66  
  67      'EXAMPLE'                        => 'Example:',
  68      'EXAMPLES'                        => 'Examples:',
  69  
  70      'HTML_REPLACEMENT'                => 'HTML replacement',
  71      'HTML_REPLACEMENT_EXAMPLE'        => '&lt;span style="background-color: {COLOR};"&gt;{TEXT}&lt;/span&gt;<br /><br />&lt;span style="font-family: {SIMPLETEXT1};"&gt;{SIMPLETEXT2}&lt;/span&gt;',
  72      'HTML_REPLACEMENT_EXPLAIN'        => 'Here you define the default HTML replacement. Do not forget to put back tokens you used above!',
  73  
  74      'TOKEN'                    => 'Token',
  75      'TOKENS'                => 'Tokens',
  76      '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>',
  77      'TOKEN_DEFINITION'        => 'What can it be?',
  78      'TOO_MANY_BBCODES'        => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
  79  
  80      'tokens'    =>    array(
  81          '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.',
  82          'SIMPLETEXT'    => 'Characters from the latin alphabet (A-Z), numbers, spaces, commas, dots, minus, plus, hyphen and underscore',
  83          'INTTEXT'        => 'Unicode letter characters, numbers, spaces, commas, dots, minus, plus, hyphen, underscore and whitespaces.',
  84          'IDENTIFIER'    => 'Characters from the latin alphabet (A-Z), numbers, hyphen and underscore',
  85          'NUMBER'        => 'Any series of digits',
  86          'EMAIL'            => 'A valid email address',
  87          '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.',
  88          'LOCAL_URL'        => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol, as links are prefixed with “%s”',
  89          'RELATIVE_URL'    => 'A relative URL. You can use this to match parts of a URL, but be careful: a full URL is a valid relative URL. When you want to use relative URLs of your board, use the LOCAL_URL token.',
  90          '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>',
  91      ),
  92  ));
  93  
  94  // Smilies and topic icons
  95  $lang = array_merge($lang, array(
  96      '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.',
  97      '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.',
  98      'ADD_SMILIES'            => 'Add multiple smilies',
  99      'ADD_SMILEY_CODE'        => 'Add additional smiley code',
 100      'ADD_ICONS'                => 'Add multiple icons',
 101      'AFTER_ICONS'            => 'After %s',
 102      'AFTER_SMILIES'            => 'After %s',
 103  
 104      'CODE'                        => 'Code',
 105      'CURRENT_ICONS'                => 'Current icons',
 106      'CURRENT_ICONS_EXPLAIN'        => 'Choose what to do with the currently installed icons.',
 107      'CURRENT_SMILIES'            => 'Current smilies',
 108      'CURRENT_SMILIES_EXPLAIN'    => 'Choose what to do with the currently installed smilies.',
 109  
 110      'DISPLAY_ON_POSTING'        => 'Display on posting page',
 111      'DISPLAY_POSTING'            => 'On posting page',
 112      'DISPLAY_POSTING_NO'        => 'Not on posting page',
 113  
 114      'EDIT_ICONS'                => 'Edit icons',
 115      'EDIT_SMILIES'                => 'Edit smilies',
 116      'EMOTION'                    => 'Emotion',
 117      'EXPORT_ICONS'                => 'Export and download icons.pak',
 118      '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.',
 119      'EXPORT_SMILIES'            => 'Export and download smilies.pak',
 120      '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>smilies.pak</samp> configuration file%s.',
 121  
 122      'FIRST'            => 'First',
 123  
 124      'ICONS_ADD'                => 'Add a new icon',
 125      'ICONS_ADDED'            => array(
 126          0    => 'No icons were added.',
 127          1    => 'The icon has been added successfully.',
 128          2    => 'The icons have been added successfully.',
 129      ),
 130      'ICONS_CONFIG'            => 'Icon configuration',
 131      'ICONS_DELETED'            => 'The icon has been removed successfully.',
 132      'ICONS_EDIT'            => 'Edit icon',
 133      'ICONS_EDITED'            => array(
 134          0    => 'No icons were updated.',
 135          1    => 'The icon has been updated successfully.',
 136          2    => 'The icons have been updated successfully.',
 137      ),
 138      'ICONS_HEIGHT'            => 'Icon height',
 139      'ICONS_IMAGE'            => 'Icon image',
 140      'ICONS_IMPORTED'        => 'The icons pack has been installed successfully.',
 141      'ICONS_IMPORT_SUCCESS'    => 'The icons pack was imported successfully.',
 142      'ICONS_LOCATION'        => 'Icon location',
 143      'ICONS_NOT_DISPLAYED'    => 'The following icons are not displayed on the posting page',
 144      'ICONS_ORDER'            => 'Icon order',
 145      'ICONS_URL'                => 'Icon image file',
 146      'ICONS_WIDTH'            => 'Icon width',
 147      'IMPORT_ICONS'            => 'Install icons package',
 148      'IMPORT_SMILIES'        => 'Install smilies package',
 149  
 150      'KEEP_ALL'            => 'Keep all',
 151  
 152      'MASS_ADD_SMILIES'    => 'Add multiple smilies',
 153  
 154      'NO_ICONS_ADD'        => 'There are no icons available for adding.',
 155      'NO_ICONS_EDIT'        => 'There are no icons available for modifying.',
 156      'NO_ICONS_EXPORT'    => 'You have no icons with which to create a package.',
 157      'NO_ICONS_PAK'        => 'No icon packages found.',
 158      'NO_SMILIES_ADD'    => 'There are no smilies available for adding.',
 159      'NO_SMILIES_EDIT'    => 'There are no smilies available for modifying.',
 160      'NO_SMILIES_EXPORT'    => 'You have no smilies with which to create a package.',
 161      'NO_SMILIES_PAK'    => 'No smiley packages found.',
 162  
 163      'PAK_FILE_NOT_READABLE'        => 'Could not read <samp>.pak</samp> file.',
 164  
 165      'REPLACE_MATCHES'    => 'Replace matches',
 166  
 167      'SELECT_PACKAGE'            => 'Select a package file',
 168      'SMILIES_ADD'                => 'Add a new smiley',
 169      'SMILIES_ADDED'                => array(
 170          0    => 'No smilies were added.',
 171          1    => 'The smiley has been added successfully.',
 172          2    => 'The smilies have been added successfully.',
 173      ),
 174      'SMILIES_CODE'                => 'Smiley code',
 175      'SMILIES_CONFIG'            => 'Smiley configuration',
 176      'SMILIES_DELETED'            => 'The smiley has been removed successfully.',
 177      'SMILIES_EDIT'                => 'Edit smiley',
 178      'SMILIE_NO_CODE'            => 'The smiley “%s” was ignored, as there was no code entered.',
 179      'SMILIE_NO_EMOTION'            => 'The smiley “%s” was ignored, as there was no emotion entered.',
 180      'SMILIE_NO_FILE'            => 'The smiley “%s” was ignored, as the file is missing.',
 181      'SMILIES_EDITED'            => array(
 182          0    => 'No smilies were updated.',
 183          1    => 'The smiley has been updated successfully.',
 184          2    => 'The smilies have been updated successfully.',
 185      ),
 186      'SMILIES_EMOTION'            => 'Emotion',
 187      'SMILIES_HEIGHT'            => 'Smiley height',
 188      'SMILIES_IMAGE'                => 'Smiley image',
 189      'SMILIES_IMPORTED'            => 'The smilies pack has been installed successfully.',
 190      'SMILIES_IMPORT_SUCCESS'    => 'The smilies pack was imported successfully.',
 191      'SMILIES_LOCATION'            => 'Smiley location',
 192      'SMILIES_NOT_DISPLAYED'        => 'The following smilies are not displayed on the posting page',
 193      'SMILIES_ORDER'                => 'Smiley order',
 194      'SMILIES_URL'                => 'Smiley image file',
 195      'SMILIES_WIDTH'                => 'Smiley width',
 196  
 197      'TOO_MANY_SMILIES'            => array(
 198          1    => 'Limit of %d smiley reached.',
 199          2    => 'Limit of %d smilies reached.',
 200      ),
 201  
 202      'WRONG_PAK_TYPE'    => 'The specified package does not contain the appropriate data.',
 203  ));
 204  
 205  // Word censors
 206  $lang = array_merge($lang, array(
 207      '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.',
 208      'ADD_WORD'                => 'Add new word',
 209  
 210      'EDIT_WORD'        => 'Edit word censor',
 211      'ENTER_WORD'    => 'You must enter a word and its replacement.',
 212  
 213      'NO_WORD'    => 'No word selected for editing.',
 214  
 215      'REPLACEMENT'    => 'Replacement',
 216  
 217      'UPDATE_WORD'    => 'Update word censor',
 218  
 219      'WORD'                => 'Word',
 220      'WORD_ADDED'        => 'The word censor has been successfully added.',
 221      'WORD_REMOVED'        => 'The selected word censor has been successfully removed.',
 222      'WORD_UPDATED'        => 'The selected word censor has been successfully updated.',
 223  ));
 224  
 225  // Ranks
 226  $lang = array_merge($lang, array(
 227      'ACP_RANKS_EXPLAIN'        => 'Using this form you can add, edit, view and delete ranks. You can also create special ranks which can be applied to a user via the user management facility.',
 228      'ADD_RANK'                => 'Add new rank',
 229  
 230      'MUST_SELECT_RANK'        => 'You must select a rank.',
 231  
 232      'NO_ASSIGNED_RANK'        => 'No special rank assigned.',
 233      'NO_RANK_TITLE'            => 'You haven’t specified a title for the rank.',
 234      '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.',
 235  
 236      'RANK_ADDED'            => 'The rank was successfully added.',
 237      'RANK_IMAGE'            => 'Rank image',
 238      'RANK_IMAGE_EXPLAIN'    => 'Use this to define a small image associated with the rank. The path is relative to the root phpBB directory.',
 239      'RANK_IMAGE_IN_USE'        => '(In use)',
 240      'RANK_MINIMUM'            => 'Minimum posts',
 241      'RANK_REMOVED'            => 'The rank was successfully deleted.',
 242      'RANK_SPECIAL'            => 'Set as special rank',
 243      'RANK_TITLE'            => 'Rank title',
 244      'RANK_UPDATED'            => 'The rank was successfully updated.',
 245  ));
 246  
 247  // Disallow Usernames
 248  $lang = array_merge($lang, array(
 249      '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 *.',
 250      'ADD_DISALLOW_EXPLAIN'    => 'You can disallow a username using the wildcard character * to match any character.',
 251      'ADD_DISALLOW_TITLE'    => 'Add a disallowed username',
 252  
 253      'DELETE_DISALLOW_EXPLAIN'    => 'You can remove a disallowed username by selecting the username from this list and clicking submit.',
 254      'DELETE_DISALLOW_TITLE'        => 'Remove a disallowed username',
 255      'DISALLOWED_ALREADY'        => 'The name you entered is already disallowed.',
 256      'DISALLOWED_DELETED'        => 'The disallowed username has been successfully removed.',
 257      'DISALLOW_SUCCESSFUL'        => 'The disallowed username has been successfully added.',
 258  
 259      'NO_DISALLOWED'                => 'No disallowed usernames',
 260      'NO_USERNAME_SPECIFIED'        => 'You haven’t selected or entered a username to operate with.',
 261  ));
 262  
 263  // Reasons
 264  $lang = array_merge($lang, array(
 265      '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.',
 266      'ADD_NEW_REASON'        => 'Add new reason',
 267      'AVAILABLE_TITLES'        => 'Available localised reason titles',
 268  
 269      'IS_NOT_TRANSLATED'            => 'Reason has <strong>not</strong> been localised.',
 270      'IS_NOT_TRANSLATED_EXPLAIN'    => 'Reason has <strong>not</strong> been localised. If you want to provide the localised form, specify the correct key from the language files report reasons section.',
 271      'IS_TRANSLATED'                => 'Reason has been localised.',
 272      'IS_TRANSLATED_EXPLAIN'        => 'Reason has been localised. If the title you enter here is specified within the language files report reasons section, the localised form of the title and description will be used.',
 273  
 274      'NO_REASON'                    => 'Reason could not be found.',
 275      'NO_REASON_INFO'            => 'You have to specify a title and a description for this reason.',
 276      'NO_REMOVE_DEFAULT_REASON'    => 'You are not able to remove the default reason “Other”.',
 277  
 278      'REASON_ADD'                => 'Add report/denial reason',
 279      'REASON_ADDED'                => 'Report/denial reason successfully added.',
 280      'REASON_ALREADY_EXIST'        => 'A reason with this title already exist, please enter another title for this reason.',
 281      'REASON_DESCRIPTION'        => 'Reason description',
 282      'REASON_DESC_TRANSLATED'    => 'Displayed reason description',
 283      'REASON_EDIT'                => 'Edit report/denial reason',
 284      'REASON_EDIT_EXPLAIN'        => 'Here you are able to add or edit a reason. If the reason is translated the localised version is used instead of the description entered here.',
 285      'REASON_REMOVED'            => 'Report/denial reason successfully removed.',
 286      'REASON_TITLE'                => 'Reason title',
 287      'REASON_TITLE_TRANSLATED'    => 'Displayed reason title',
 288      'REASON_UPDATED'            => 'Report/denial reason successfully updated.',
 289  
 290      'USED_IN_REPORTS'        => 'Used in reports',
 291  ));


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1