consistent acp layout regarding backlinks and messages.
[phpbb.git] / phpBB / language / en / acp / prune.php
blob4452deafc950de1d247577b4c023b66b543438b5
1 <?php
2 /**
4 * acp_prune [English]
6 * @package language
7 * @version $Id$
8 * @copyright (c) 2005 phpBB Group
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 /**
14 * DO NOT CHANGE
16 if (empty($lang) || !is_array($lang))
18 $lang = array();
21 // DEVELOPERS PLEASE NOTE
23 // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
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
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
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.',
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.',
43 'JOINED_EXPLAIN' => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format.',
45 'LAST_ACTIVE_EXPLAIN' => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format.',
47 'SELECT_USERS_EXPLAIN' => 'Enter specific usernames here, they will be used in preference to the criteria above.',
49 'USER_DEACTIVATE_SUCCESS' => 'The selected users have been deactivated successfully.',
50 'USER_DELETE_SUCCESS' => 'The selected users have been deleted successfully.',
51 ));
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.',
57 'FORUM_PRUNE' => 'Forum prune',
59 'NO_PRUNE' => 'No forums pruned',
61 'SELECTED_FORUM' => 'Selected forum',
62 'SELECTED_FORUMS' => 'Selected forums',
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',
75 'TOPICS_PRUNED' => 'Topics pruned',
76 ));