[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

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

   1  <?php
   2  /** 
   3  *
   4  * acp_forums [English]
   5  *
   6  * @package language
   7  * @version $Id: forums.php,v 1.17 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  // Forum Admin
  34  $lang = array_merge($lang, array(
  35      'AUTO_PRUNE_DAYS'            => 'Auto-prune post age',
  36      'AUTO_PRUNE_DAYS_EXPLAIN'    => 'Number of days since last post after which topic is removed.',
  37      'AUTO_PRUNE_FREQ'            => 'Auto-prune frequency',
  38      'AUTO_PRUNE_FREQ_EXPLAIN'    => 'Time in days between pruning events.',
  39      'AUTO_PRUNE_VIEWED'            => 'Auto-prune post viewed age',
  40      'AUTO_PRUNE_VIEWED_EXPLAIN'    => 'Number of days since topic was viewed after which topic is removed.',
  41  
  42      'COPY_PERMISSIONS'                => 'Copy permissions from',
  43      'COPY_PERMISSIONS_ADD_EXPLAIN'    => 'Once created, the forum will have the same permissions as the one you select here. If no forum is selected the newly created forum will not be visible until permissions had been set.',
  44      'COPY_PERMISSIONS_EDIT_EXPLAIN'    => 'If you select to copy permissions, the forum will have the same permissions as the one you select here. This will overwrite any permissions you have previously set for this forum with the permissions of the forum you select here. If no forum is selected the current permissions will be kept.',
  45      'CREATE_FORUM'                    => 'Create new forum',
  46  
  47      'DECIDE_MOVE_DELETE_CONTENT'        => 'Delete content or move to forum',
  48      'DEFAULT_STYLE'                        => 'Default Style',
  49      'DELETE_ALL_POSTS'                    => 'Delete posts',
  50      'DELETE_SUBFORUMS'                    => 'Delete subforums and posts',
  51      'DISPLAY_ACTIVE_TOPICS'                => 'Enable active topics',
  52      'DISPLAY_ACTIVE_TOPICS_EXPLAIN'        => 'If set to yes active topics in selected subforums will be displayed under this category.',
  53  
  54      'EDIT_FORUM'                    => 'Edit forum',
  55      'ENABLE_INDEXING'                => 'Enable search indexing',
  56      'ENABLE_INDEXING_EXPLAIN'        => 'If set to yes posts made to this forum will be indexed for searching.',
  57      'ENABLE_POST_REVIEW'            => 'Enable post review',
  58      'ENABLE_POST_REVIEW_EXPLAIN'    => 'If set to yes users are able to review their post if new posts were made to the topic while users wrote theirs. This should be disabled for chat forums.',
  59      'ENABLE_RECENT'                    => 'Display active topics',
  60      'ENABLE_RECENT_EXPLAIN'            => 'If set to yes topics made to this forum will be shown in the active topics list.',
  61      'ENABLE_TOPIC_ICONS'            => 'Enable Topic Icons',
  62  
  63      'FORUM_ADMIN'                        => 'Forum administration',
  64      'FORUM_ADMIN_EXPLAIN'                => 'In phpBB3 there are no categories, everything is forum based. Each forum can have an unlimited number of sub-forums and you can determine whether each may be posted to or not (i.e. whether it acts like an old category). Here you can add, edit, delete, lock, unlock individual forums as well as set certain additional controls. If your posts and topics have got out of sync you can also resynchronise a forum.',
  65      'FORUM_AUTO_PRUNE'                    => 'Enable auto-pruning',
  66      'FORUM_AUTO_PRUNE_EXPLAIN'            => 'Prunes the forum of topics, set the frequency/age parameters below.',
  67      'FORUM_CREATED'                        => 'Forum created successfully.',
  68      'FORUM_DATA_NEGATIVE'                => 'Pruning parameters cannot be negative.',
  69      'FORUM_DELETE'                        => 'Delete forum',
  70      'FORUM_DELETE_EXPLAIN'                => 'The form below will allow you to delete a forum and decide where you want to put all topics (or forums) it contained.',
  71      'FORUM_DELETED'                        => 'Forum successfully deleted.',
  72      'FORUM_DESC'                        => 'Description',
  73      'FORUM_DESC_EXPLAIN'                => 'Any markup entered here will displayed as is.',
  74      'FORUM_EDIT_EXPLAIN'                => 'The form below will allow you to customise this forum. Please note that moderation and post count controls are set via forum permissions for each user or usergroup.',
  75      'FORUM_IMAGE'                        => 'Forum Image',
  76      'FORUM_IMAGE_EXPLAIN'                => 'Location, relative to the phpBB root directory, of an additional image to associate with this forum.',
  77      'FORUM_LINK_EXPLAIN'                => 'Full URL (including the protocol, for example <samp>http://</samp>) to location clicking this forum will take the user.',
  78      'FORUM_LINK_TRACK'                    => 'Track link redirects',
  79      'FORUM_LINK_TRACK_EXPLAIN'            => 'Records the number of times a forum link was clicked.',
  80      'FORUM_NAME'                        => 'Forum name',
  81      'FORUM_NAME_EMPTY'                    => 'You must enter a name for this forum.',
  82      'FORUM_PARENT'                        => 'Parent forum',
  83      'FORUM_PASSWORD'                    => 'Forum password',
  84      'FORUM_PASSWORD_CONFIRM'            => 'Confirm forum password',
  85      'FORUM_PASSWORD_CONFIRM_EXPLAIN'    => 'Only needs to be set if a forum password is entered.',
  86      'FORUM_PASSWORD_EXPLAIN'            => 'Defines a password for this forum, use the permission system in preference.',
  87      'FORUM_PASSWORD_MISMATCH'            => 'The passwords you entered did not match.',
  88      'FORUM_PRUNE_SETTINGS'                => 'Forum prune settings',
  89      'FORUM_RESYNCED'                    => 'Forum "%s" successfully resynced',
  90      'FORUM_RULES_EXPLAIN'                => 'Forum rules are displayed at any page within the given forum.',
  91      'FORUM_RULES_LINK'                    => 'Link to forum rules',
  92      'FORUM_RULES_LINK_EXPLAIN'            => 'You are able to enter the URL of the page/post containing your forum rules here. This setting will override the forum rules text you specified.',
  93      'FORUM_RULES_PREVIEW'                => 'Forum rules preview',
  94      'FORUM_SETTINGS'                    => 'Forum settings',
  95      'FORUM_STATUS'                        => 'Forum status',
  96      'FORUM_STYLE'                        => 'Forum style',
  97      'FORUM_TOPICS_PAGE'                    => 'Topics per page',
  98      'FORUM_TOPICS_PAGE_EXPLAIN'            => 'If non-zero this value will override the default topics per page setting.',
  99      'FORUM_TYPE'                        => 'Forum type',
 100      'FORUM_UPDATED'                        => 'Forum informations updated successfully.',
 101  
 102      'GENERAL_FORUM_SETTINGS'    => 'General forum settings',
 103  
 104      'LINK'                    => 'Link',
 105      'LIST_INDEX'            => 'List forum in subforum listings',
 106      'LIST_INDEX_EXPLAIN'    => 'Displays a link to this forum under the parent forums subforum listing if one exist.',
 107      'LOCKED'                => 'Locked',
 108  
 109      'MOVE_POSTS_TO'        => 'Move posts',
 110      'MOVE_SUBFORUMS_TO'    => 'Move subforums',
 111  
 112      'NO_DESTINATION_FORUM'            => 'You have not specified a forum to move content to',
 113      'NO_FORUM_ACTION'                => 'No action defined for what happens with the forum content',
 114      'NO_PARENT'                        => 'No parent',
 115      'NO_PERMISSIONS'                => 'Do not copy permissions',
 116      'NO_PERMISSION_FORUM_ADD'        => 'You do not have the necessary permissions to add forums.',
 117      'NO_PERMISSION_FORUM_DELETE'    => 'You do not have the necessary permissions to delete forums.',
 118  
 119      'PARENT_NOT_EXIST'            => 'Parent does not exist.',
 120      'PRUNE_ANNOUNCEMENTS'        => 'Prune announcements',
 121      'PRUNE_STICKY'                => 'Prune stickies',
 122      'PRUNE_OLD_POLLS'            => 'Prune old polls',
 123      'PRUNE_OLD_POLLS_EXPLAIN'    => 'Removes topics with polls not voted in for post age days.',
 124      
 125      'REDIRECT_ACL'    => 'Now you are able to %sset permissions%s for this forum.',
 126  
 127      'SYNC_IN_PROGRESS'            => 'Synchronizing forum',
 128      'SYNC_IN_PROGRESS_EXPLAIN'    => 'Currently resyncing topic range %1$d/%2$d.',
 129  
 130      'TYPE_CAT'            => 'Category',
 131      'TYPE_FORUM'        => 'Forum',
 132      'TYPE_LINK'            => 'Link',
 133  
 134      'UNLOCKED'            => 'Unlocked',
 135  ));
 136  
 137  ?>


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