443
by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0 |
1 |
<?php
|
2 |
/**
|
|
3 |
*
|
|
4 |
* acp_prune [English]
|
|
5 |
*
|
|
6 |
* @package language
|
|
7 |
* @version $Id: prune.php,v 1.14 2007/10/04 15:07:24 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 (!defined('IN_PHPBB')) |
|
17 |
{
|
|
18 |
exit; |
|
19 |
}
|
|
20 |
||
21 |
if (empty($lang) || !is_array($lang)) |
|
22 |
{
|
|
23 |
$lang = array(); |
|
24 |
}
|
|
25 |
||
26 |
// DEVELOPERS PLEASE NOTE
|
|
27 |
//
|
|
28 |
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
29 |
//
|
|
30 |
// Placeholders can now contain order information, e.g. instead of
|
|
31 |
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
32 |
// translators to re-order the output of data while ensuring it remains correct
|
|
33 |
//
|
|
34 |
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
35 |
// equally where a string contains only two placeholders which are used to wrap text
|
|
36 |
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
37 |
||
38 |
// User pruning
|
|
39 |
$lang = array_merge($lang, array( |
|
40 |
'ACP_PRUNE_USERS_EXPLAIN' => 'Here you can delete (or deactivate) users from your 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.', |
|
41 |
||
42 |
'DEACTIVATE_DELETE' => 'Deactivate or delete', |
|
43 |
'DEACTIVATE_DELETE_EXPLAIN' => 'Choose whether to deactivate users or delete them entirely, note there is no undo!', |
|
44 |
'DELETE_USERS' => 'Delete', |
|
45 |
'DELETE_USER_POSTS' => 'Delete pruned user posts', |
|
46 |
'DELETE_USER_POSTS_EXPLAIN' => 'Removes posts made by deleted users, has no effect if users are deactivated.', |
|
47 |
||
48 |
'JOINED_EXPLAIN' => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format.', |
|
49 |
||
50 |
'LAST_ACTIVE_EXPLAIN' => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format.', |
|
51 |
||
52 |
'PRUNE_USERS_LIST' => 'Users to be pruned', |
|
53 |
'PRUNE_USERS_LIST_DELETE' => 'With the selected critera for pruning users the following accounts will be removed.', |
|
54 |
'PRUNE_USERS_LIST_DEACTIVATE' => 'With the selected critera for pruning users the following accounts will be deactivated.', |
|
55 |
||
56 |
'SELECT_USERS_EXPLAIN' => 'Enter specific usernames here, they will be used in preference to the criteria above.', |
|
57 |
||
58 |
'USER_DEACTIVATE_SUCCESS' => 'The selected users have been deactivated successfully.', |
|
59 |
'USER_DELETE_SUCCESS' => 'The selected users have been deleted successfully.', |
|
60 |
'USER_PRUNE_FAILURE' => 'No users fit the selected criteria.', |
|
61 |
||
62 |
'WRONG_ACTIVE_JOINED_DATE' => 'The date entered is wrong, it is expected in <kbd>YYYY-MM-DD</kbd> format.', |
|
63 |
));
|
|
64 |
||
65 |
// Forum Pruning
|
|
66 |
$lang = array_merge($lang, array( |
|
67 |
'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.', |
|
68 |
||
69 |
'FORUM_PRUNE' => 'Forum prune', |
|
70 |
||
71 |
'NO_PRUNE' => 'No forums pruned.', |
|
72 |
||
73 |
'SELECTED_FORUM' => 'Selected forum', |
|
74 |
'SELECTED_FORUMS' => 'Selected forums', |
|
75 |
||
76 |
'POSTS_PRUNED' => 'Posts pruned', |
|
77 |
'PRUNE_ANNOUNCEMENTS' => 'Prune announcements', |
|
78 |
'PRUNE_FINISHED_POLLS' => 'Prune closed polls', |
|
79 |
'PRUNE_FINISHED_POLLS_EXPLAIN' => 'Removes topics with polls which have ended.', |
|
80 |
'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.', |
|
81 |
'PRUNE_NOT_POSTED' => 'Days since last posted', |
|
82 |
'PRUNE_NOT_VIEWED' => 'Days since last viewed', |
|
83 |
'PRUNE_OLD_POLLS' => 'Prune old polls', |
|
84 |
'PRUNE_OLD_POLLS_EXPLAIN' => 'Removes topics with polls not voted in for post age days.', |
|
85 |
'PRUNE_STICKY' => 'Prune stickies', |
|
86 |
'PRUNE_SUCCESS' => 'Pruning of forums was successful.', |
|
87 |
||
88 |
'TOPICS_PRUNED' => 'Topics pruned', |
|
89 |
));
|
|
90 |
||
91 |
?>
|