[ Index ]

PHP Cross Reference of phpBB-3.2.11-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_TAG'                => 'Tag',
  60      'BBCODE_TAG_TOO_LONG'        => 'The tag name you selected is too long.',
  61      'BBCODE_TAG_DEF_TOO_LONG'    => 'The tag definition that you have entered is too long, please shorten your tag definition.',
  62      'BBCODE_USAGE'                => 'BBCode usage',
  63      'BBCODE_USAGE_EXAMPLE'        => '[highlight={COLOR}]{TEXT}[/highlight]<br /><br />[font={SIMPLETEXT1}]{SIMPLETEXT2}[/font]',
  64      'BBCODE_USAGE_EXPLAIN'        => 'Here you define how to use the BBCode. Replace any variable input by the corresponding token (%ssee below%s).',
  65  
  66      'EXAMPLE'                        => 'Example:',
  67      'EXAMPLES'                        => 'Examples:',
  68  
  69      'HTML_REPLACEMENT'                => 'HTML replacement',
  70      '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;',
  71      'HTML_REPLACEMENT_EXPLAIN'        => 'Here you define the default HTML replacement. Do not forget to put back tokens you used above!',
  72  
  73      'TOKEN'                    => 'Token',
  74      'TOKENS'                => 'Tokens',
  75      '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>',
  76      'TOKEN_DEFINITION'        => 'What can it be?',
  77      'TOO_MANY_BBCODES'        => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
  78  
  79      'tokens'    =>    array(
  80          'TEXT'            => 'Any text, including foreign characters, numbers, etc…',
  81          'SIMPLETEXT'    => 'Characters from the latin alphabet (A-Z), numbers, spaces, commas, dots, minus, plus, hyphen and underscore',
  82          'INTTEXT'        => 'Unicode letter characters, numbers, spaces, commas, dots, minus, plus, hyphen, underscore and whitespaces.',
  83          'IDENTIFIER'    => 'Characters from the latin alphabet (A-Z), numbers, hyphen and underscore',
  84          'NUMBER'        => 'Any series of digits',
  85          'EMAIL'            => 'A valid email address',
  86          'URL'            => 'A valid URL using any allowed protocol (http, ftp, etc… cannot be used for javascript exploits). If none is given, “http://” is prefixed to the string.',
  87          '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”',
  88          '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.',
  89          '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>',
  90      ),
  91  ));
  92  
  93  // Smilies and topic icons
  94  $lang = array_merge($lang, array(
  95      '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.',
  96      '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.',
  97      'ADD_SMILIES'            => 'Add multiple smilies',
  98      'ADD_SMILEY_CODE'        => 'Add additional smiley code',
  99      'ADD_ICONS'                => 'Add multiple icons',
 100      'AFTER_ICONS'            => 'After %s',
 101      'AFTER_SMILIES'            => 'After %s',
 102  
 103      'CODE'                        => 'Code',
 104      'CURRENT_ICONS'                => 'Current icons',
 105      'CURRENT_ICONS_EXPLAIN'        => 'Choose what to do with the currently installed icons.',
 106      'CURRENT_SMILIES'            => 'Current smilies',
 107      'CURRENT_SMILIES_EXPLAIN'    => 'Choose what to do with the currently installed smilies.',
 108  
 109      'DISPLAY_ON_POSTING'        => 'Display on posting page',
 110      'DISPLAY_POSTING'            => 'On posting page',
 111      'DISPLAY_POSTING_NO'        => 'Not on posting page',
 112  
 113      'EDIT_ICONS'                => 'Edit icons',
 114      'EDIT_SMILIES'                => 'Edit smilies',
 115      'EMOTION'                    => 'Emotion',
 116      'EXPORT_ICONS'                => 'Export and download icons.pak',
 117      '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.',
 118      'EXPORT_SMILIES'            => 'Export and download smilies.pak',
 119      '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.',
 120  
 121      'FIRST'            => 'First',
 122  
 123      'ICONS_ADD'                => 'Add a new icon',
 124      'ICONS_ADDED'            => array(
 125          0    => 'No icons were added.',
 126          1    => 'The icon has been added successfully.',
 127          2    => 'The icons have been added successfully.',
 128      ),
 129      'ICONS_CONFIG'            => 'Icon configuration',
 130      'ICONS_DELETED'            => 'The icon has been removed successfully.',
 131      'ICONS_EDIT'            => 'Edit icon',
 132      'ICONS_EDITED'            => array(
 133          0    => 'No icons were updated.',
 134          1    => 'The icon has been updated successfully.',
 135          2    => 'The icons have been updated successfully.',
 136      ),
 137      'ICONS_HEIGHT'            => 'Icon height',
 138      'ICONS_IMAGE'            => 'Icon image',
 139      'ICONS_IMPORTED'        => 'The icons pack has been installed successfully.',
 140      'ICONS_IMPORT_SUCCESS'    => 'The icons pack was imported successfully.',
 141      'ICONS_LOCATION'        => 'Icon location',
 142      'ICONS_NOT_DISPLAYED'    => 'The following icons are not displayed on the posting page',
 143      'ICONS_ORDER'            => 'Icon order',
 144      'ICONS_URL'                => 'Icon image file',
 145      'ICONS_WIDTH'            => 'Icon width',
 146      'IMPORT_ICONS'            => 'Install icons package',
 147      'IMPORT_SMILIES'        => 'Install smilies package',
 148  
 149      'KEEP_ALL'            => 'Keep all',
 150  
 151      'MASS_ADD_SMILIES'    => 'Add multiple smilies',
 152  
 153      'NO_ICONS_ADD'        => 'There are no icons available for adding.',
 154      'NO_ICONS_EDIT'        => 'There are no icons available for modifying.',
 155      'NO_ICONS_EXPORT'    => 'You have no icons with which to create a package.',
 156      'NO_ICONS_PAK'        => 'No icon packages found.',
 157      'NO_SMILIES_ADD'    => 'There are no smilies available for adding.',
 158      'NO_SMILIES_EDIT'    => 'There are no smilies available for modifying.',
 159      'NO_SMILIES_EXPORT'    => 'You have no smilies with which to create a package.',
 160      'NO_SMILIES_PAK'    => 'No smiley packages found.',
 161  
 162      'PAK_FILE_NOT_READABLE'        => 'Could not read <samp>.pak</samp> file.',
 163  
 164      'REPLACE_MATCHES'    => 'Replace matches',
 165  
 166      'SELECT_PACKAGE'            => 'Select a package file',
 167      'SMILIES_ADD'                => 'Add a new smiley',
 168      'SMILIES_ADDED'                => array(
 169          0    => 'No smilies were added.',
 170          1    => 'The smiley has been added successfully.',
 171          2    => 'The smilies have been added successfully.',
 172      ),
 173      'SMILIES_CODE'                => 'Smiley code',
 174      'SMILIES_CONFIG'            => 'Smiley configuration',
 175      'SMILIES_DELETED'            => 'The smiley has been removed successfully.',
 176      'SMILIES_EDIT'                => 'Edit smiley',
 177      'SMILIE_NO_CODE'            => 'The smiley “%s” was ignored, as there was no code entered.',
 178      'SMILIE_NO_EMOTION'            => 'The smiley “%s” was ignored, as there was no emotion entered.',
 179      'SMILIE_NO_FILE'            => 'The smiley “%s” was ignored, as the file is missing.',
 180      'SMILIES_EDITED'            => array(
 181          0    => 'No smilies were updated.',
 182          1    => 'The smiley has been updated successfully.',
 183          2    => 'The smilies have been updated successfully.',
 184      ),
 185      'SMILIES_EMOTION'            => 'Emotion',
 186      'SMILIES_HEIGHT'            => 'Smiley height',
 187      'SMILIES_IMAGE'                => 'Smiley image',
 188      'SMILIES_IMPORTED'            => 'The smilies pack has been installed successfully.',
 189      'SMILIES_IMPORT_SUCCESS'    => 'The smilies pack was imported successfully.',
 190      'SMILIES_LOCATION'            => 'Smiley location',
 191      'SMILIES_NOT_DISPLAYED'        => 'The following smilies are not displayed on the posting page',
 192      'SMILIES_ORDER'                => 'Smiley order',
 193      'SMILIES_URL'                => 'Smiley image file',
 194      'SMILIES_WIDTH'                => 'Smiley width',
 195  
 196      'TOO_MANY_SMILIES'            => array(
 197          1    => 'Limit of %d smiley reached.',
 198          2    => 'Limit of %d smilies reached.',
 199      ),
 200  
 201      'WRONG_PAK_TYPE'    => 'The specified package does not contain the appropriate data.',
 202  ));
 203  
 204  // Word censors
 205  $lang = array_merge($lang, array(
 206      '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.',
 207      'ADD_WORD'                => 'Add new word',
 208  
 209      'EDIT_WORD'        => 'Edit word censor',
 210      'ENTER_WORD'    => 'You must enter a word and its replacement.',
 211  
 212      'NO_WORD'    => 'No word selected for editing.',
 213  
 214      'REPLACEMENT'    => 'Replacement',
 215  
 216      'UPDATE_WORD'    => 'Update word censor',
 217  
 218      'WORD'                => 'Word',
 219      'WORD_ADDED'        => 'The word censor has been successfully added.',
 220      'WORD_REMOVED'        => 'The selected word censor has been successfully removed.',
 221      'WORD_UPDATED'        => 'The selected word censor has been successfully updated.',
 222  ));
 223  
 224  // Ranks
 225  $lang = array_merge($lang, array(
 226      '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.',
 227      'ADD_RANK'                => 'Add new rank',
 228  
 229      'MUST_SELECT_RANK'        => 'You must select a rank.',
 230  
 231      'NO_ASSIGNED_RANK'        => 'No special rank assigned.',
 232      'NO_RANK_TITLE'            => 'You haven’t specified a title for the rank.',
 233      '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.',
 234  
 235      'RANK_ADDED'            => 'The rank was successfully added.',
 236      'RANK_IMAGE'            => 'Rank image',
 237      'RANK_IMAGE_EXPLAIN'    => 'Use this to define a small image associated with the rank. The path is relative to the root phpBB directory.',
 238      'RANK_IMAGE_IN_USE'        => '(In use)',
 239      'RANK_MINIMUM'            => 'Minimum posts',
 240      'RANK_REMOVED'            => 'The rank was successfully deleted.',
 241      'RANK_SPECIAL'            => 'Set as special rank',
 242      'RANK_TITLE'            => 'Rank title',
 243      'RANK_UPDATED'            => 'The rank was successfully updated.',
 244  ));
 245  
 246  // Disallow Usernames
 247  $lang = array_merge($lang, array(
 248      '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 *.',
 249      'ADD_DISALLOW_EXPLAIN'    => 'You can disallow a username using the wildcard character * to match any character.',
 250      'ADD_DISALLOW_TITLE'    => 'Add a disallowed username',
 251  
 252      'DELETE_DISALLOW_EXPLAIN'    => 'You can remove a disallowed username by selecting the username from this list and clicking submit.',
 253      'DELETE_DISALLOW_TITLE'        => 'Remove a disallowed username',
 254      'DISALLOWED_ALREADY'        => 'The name you entered is already disallowed.',
 255      'DISALLOWED_DELETED'        => 'The disallowed username has been successfully removed.',
 256      'DISALLOW_SUCCESSFUL'        => 'The disallowed username has been successfully added.',
 257  
 258      'NO_DISALLOWED'                => 'No disallowed usernames',
 259      'NO_USERNAME_SPECIFIED'        => 'You haven’t selected or entered a username to operate with.',
 260  ));
 261  
 262  // Reasons
 263  $lang = array_merge($lang, array(
 264      '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.',
 265      'ADD_NEW_REASON'        => 'Add new reason',
 266      'AVAILABLE_TITLES'        => 'Available localised reason titles',
 267  
 268      'IS_NOT_TRANSLATED'            => 'Reason has <strong>not</strong> been localised.',
 269      '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.',
 270      'IS_TRANSLATED'                => 'Reason has been localised.',
 271      '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.',
 272  
 273      'NO_REASON'                    => 'Reason could not be found.',
 274      'NO_REASON_INFO'            => 'You have to specify a title and a description for this reason.',
 275      'NO_REMOVE_DEFAULT_REASON'    => 'You are not able to remove the default reason “Other”.',
 276  
 277      'REASON_ADD'                => 'Add report/denial reason',
 278      'REASON_ADDED'                => 'Report/denial reason successfully added.',
 279      'REASON_ALREADY_EXIST'        => 'A reason with this title already exist, please enter another title for this reason.',
 280      'REASON_DESCRIPTION'        => 'Reason description',
 281      'REASON_DESC_TRANSLATED'    => 'Displayed reason description',
 282      'REASON_EDIT'                => 'Edit report/denial reason',
 283      '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.',
 284      'REASON_REMOVED'            => 'Report/denial reason successfully removed.',
 285      'REASON_TITLE'                => 'Reason title',
 286      'REASON_TITLE_TRANSLATED'    => 'Displayed reason title',
 287      'REASON_UPDATED'            => 'Report/denial reason successfully updated.',
 288  
 289      'USED_IN_REPORTS'        => 'Used in reports',
 290  ));


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1