[ Index ] |
PHP Cross Reference of phpBB 3.0 Beta 3 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * acp_prune [English] 5 * 6 * @package language 7 * @version $Id: prune.php,v 1.7 2006/10/02 15:10:29 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 // User pruning 34 $lang = array_merge($lang, array( 35 'ACP_PRUNE_USERS_EXPLAIN' => 'Here you can delete (or deactivate) users from you board. This can be done in a variety of ways; by post count, last activity, etc. Each of these criteria can be combined, i.e. you can prune users last active before 2002-01-01 with fewer than 10 posts. Alternatively you can enter a list of users directly into the text box, any criteria entered will be ignored. Take care with this facility! Once a user is deleted there is no way back.', 36 37 'DEACTIVATE_DELETE' => 'Deactivate or delete', 38 'DEACTIVATE_DELETE_EXPLAIN' => 'Choose whether to deactivate users or delete them entirely, note there is no undo!', 39 'DELETE_USERS' => 'Delete', 40 'DELETE_USER_POSTS' => 'Delete pruned user posts', 41 'DELETE_USER_POSTS_EXPLAIN' => 'Removes posts made by deleted users, has no effect if users are deactivated.', 42 43 'JOINED_EXPLAIN' => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format.', 44 45 'LAST_ACTIVE_EXPLAIN' => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format.', 46 47 'SELECT_USERS_EXPLAIN' => 'Enter specific usernames here, they will be used in preference to the criteria above.', 48 49 'USER_DEACTIVATE_SUCCESS' => 'The selected users have been deactivated successfully.', 50 'USER_DELETE_SUCCESS' => 'The selected users have been deleted successfully.', 51 )); 52 53 // Forum Pruning 54 $lang = array_merge($lang, array( 55 '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.', 56 57 'FORUM_PRUNE' => 'Forum prune', 58 59 'NO_PRUNE' => 'No forums pruned', 60 61 'SELECTED_FORUM' => 'Selected forum', 62 'SELECTED_FORUMS' => 'Selected forums', 63 64 'POSTS_PRUNED' => 'Posts pruned', 65 'PRUNE_ANNOUNCEMENTS' => 'Prune announcements', 66 'PRUNE_FINISHED_POLLS' => 'Prune closed polls', 67 'PRUNE_FINISHED_POLLS_EXPLAIN' => 'Removes topics with polls which have ended.', 68 'PRUNE_NOT_POSTED' => 'Days since last posted', 69 'PRUNE_NOT_VIEWED' => 'Days since last viewed', 70 'PRUNE_OLD_POLLS' => 'Prune old polls', 71 'PRUNE_OLD_POLLS_EXPLAIN' => 'Removes topics with polls not voted in for post age days.', 72 'PRUNE_STICKY' => 'Prune stickies', 73 'PRUNE_SUCCESS' => 'Pruning of forums was successful', 74 75 'TOPICS_PRUNED' => 'Topics pruned', 76 )); 77 78 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 22 00:35:05 2006 | Cross-referenced by PHPXref 0.6 |