[ Index ]

PHP Cross Reference of phpBB-3.3.11-deutsch

title

Body

[close]

/language/en/acp/ -> prune.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  // User pruning
  40  $lang = array_merge($lang, array(
  41      'ACP_PRUNE_USERS_EXPLAIN'    => 'This section allows you to delete or deactivate users on your board. Accounts can be filtered in a variety of ways; by post count, most recent activity, etc. Criteria may be combined to narrow down which accounts are affected. For example, you can prune users with fewer than 10 posts, who were also inactive after 2002-01-01. Use * as a wildcard for text fields. Alternatively, you may skip the criteria selection completely by entering a list of users (each on a separate line) into the text field. Take care with this facility! Once a user is deleted, there is no way to reverse the action.',
  42  
  43      'CRITERIA'                => 'Criteria',
  44  
  45      'DEACTIVATE_DELETE'            => 'Deactivate or delete',
  46      'DEACTIVATE_DELETE_EXPLAIN'    => 'Choose whether to deactivate users or delete them entirely. Please note that deleted users cannot be restored!',
  47      'DELETE_USERS'                => 'Delete',
  48      'DELETE_USER_POSTS'            => 'Delete pruned user posts',
  49      'DELETE_USER_POSTS_EXPLAIN' => 'Removes posts made by deleted users, has no effect if users are deactivated.',
  50  
  51      'JOINED_EXPLAIN'            => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format. You may use both fields to specify an interval, or leave one blank for an open date range.',
  52  
  53      'LAST_ACTIVE_EXPLAIN'        => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format. Enter <kbd>0000-00-00</kbd> to prune users who never logged in, <em>Before</em> and <em>After</em> conditions will be ignored.',
  54  
  55      'POSTS_ON_QUEUE'            => 'Posts Awaiting Approval',
  56      'PRUNE_USERS_GROUP_EXPLAIN'    => 'Limit to users within the selected group.',
  57      'PRUNE_USERS_GROUP_NONE'    => 'All groups',
  58      'PRUNE_USERS_LIST'                => 'Users to be pruned',
  59      'PRUNE_USERS_LIST_DELETE'        => 'With the selected critera for pruning users the following accounts will be removed. You can remove individual users from the deletion list by unchecking the box next to their username.',
  60      'PRUNE_USERS_LIST_DEACTIVATE'    => 'With the selected critera for pruning users the following accounts will be deactivated. You can remove individual users from the deactivation list by unchecking the box next to their username.',
  61  
  62      'SELECT_USERS_EXPLAIN'        => 'Enter specific usernames here. They will be used in preference to the criteria above. Founders cannot be pruned.',
  63  
  64      'USER_DEACTIVATE_SUCCESS'    => 'The selected users have been deactivated successfully.',
  65      'USER_DELETE_SUCCESS'        => 'The selected users have been deleted successfully.',
  66      'USER_PRUNE_FAILURE'        => 'No users fit the selected criteria.',
  67  
  68      'WRONG_ACTIVE_JOINED_DATE'    => 'The date entered is wrong, it is expected in <kbd>YYYY-MM-DD</kbd> format.',
  69  ));
  70  
  71  // Forum Pruning
  72  $lang = array_merge($lang, array(
  73      'ACP_PRUNE_FORUMS_EXPLAIN'    => 'This will delete any topic which has not been posted to or viewed within the number of days you select. If you do not enter a number then all topics will be deleted. By default, it will not remove topics in which polls are still running nor will it remove stickies and announcements.',
  74  
  75      'FORUM_PRUNE'        => 'Forum prune',
  76  
  77      'NO_PRUNE'            => 'No forums pruned.',
  78  
  79      'SELECTED_FORUM'    => 'Selected forum',
  80      'SELECTED_FORUMS'    => 'Selected forums',
  81  
  82      'POSTS_PRUNED'                    => 'Posts pruned',
  83      'PRUNE_ANNOUNCEMENTS'            => 'Prune announcements',
  84      'PRUNE_FINISHED_POLLS'            => 'Prune closed polls',
  85      'PRUNE_FINISHED_POLLS_EXPLAIN'    => 'Removes topics with polls which have ended.',
  86      'PRUNE_FORUM_CONFIRM'            => 'Are you sure you want to prune the selected forums with the settings specified? Once removed, there is no way to recover the pruned posts and topics.',
  87      'PRUNE_NOT_POSTED'                => 'Days since last posted',
  88      'PRUNE_NOT_VIEWED'                => 'Days since last viewed',
  89      'PRUNE_OLD_POLLS'                => 'Prune old polls',
  90      'PRUNE_OLD_POLLS_EXPLAIN'        => 'Removes topics with polls not voted in for post age days.',
  91      'PRUNE_STICKY'                    => 'Prune stickies',
  92      'PRUNE_SUCCESS'                    => 'Pruning of forums was successful.',
  93  
  94      'TOPICS_PRUNED'        => 'Topics pruned',
  95  ));


Generated: Sat Nov 4 14:26:03 2023 Cross-referenced by PHPXref 0.7.1