Blame Extras/phpBB/3.0.4/language/en/acp/prune.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* acp_prune [English]
4c79b5
*
4c79b5
* @package language
4c79b5
* @version $Id: prune.php 8479 2008-03-29 00:22:48Z naderman $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* DO NOT CHANGE
4c79b5
*/
4c79b5
if (!defined('IN_PHPBB'))
4c79b5
{
4c79b5
	exit;
4c79b5
}
4c79b5
4c79b5
if (empty($lang) || !is_array($lang))
4c79b5
{
4c79b5
	$lang = array();
4c79b5
}
4c79b5
4c79b5
// DEVELOPERS PLEASE NOTE
4c79b5
//
4c79b5
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
4c79b5
//
4c79b5
// Placeholders can now contain order information, e.g. instead of
4c79b5
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
4c79b5
// translators to re-order the output of data while ensuring it remains correct
4c79b5
//
4c79b5
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
4c79b5
// equally where a string contains only two placeholders which are used to wrap text
4c79b5
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
4c79b5
4c79b5
// User pruning
4c79b5
$lang = array_merge($lang, array(
4c79b5
	'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.',
4c79b5
4c79b5
	'DEACTIVATE_DELETE'			=> 'Deactivate or delete',
4c79b5
	'DEACTIVATE_DELETE_EXPLAIN'	=> 'Choose whether to deactivate users or delete them entirely, note there is no undo!',
4c79b5
	'DELETE_USERS'				=> 'Delete',
4c79b5
	'DELETE_USER_POSTS'			=> 'Delete pruned user posts',
4c79b5
	'DELETE_USER_POSTS_EXPLAIN' => 'Removes posts made by deleted users, has no effect if users are deactivated.',
4c79b5
4c79b5
	'JOINED_EXPLAIN'			=> 'Enter a date in YYYY-MM-DD format.',
4c79b5
4c79b5
	'LAST_ACTIVE_EXPLAIN'		=> 'Enter a date in YYYY-MM-DD format.',
4c79b5
4c79b5
	'PRUNE_USERS_LIST'				=> 'Users to be pruned',
4c79b5
	'PRUNE_USERS_LIST_DELETE'		=> 'With the selected critera for pruning users the following accounts will be removed.',
4c79b5
	'PRUNE_USERS_LIST_DEACTIVATE'	=> 'With the selected critera for pruning users the following accounts will be deactivated.',
4c79b5
4c79b5
	'SELECT_USERS_EXPLAIN'		=> 'Enter specific usernames here, they will be used in preference to the criteria above.',
4c79b5
4c79b5
	'USER_DEACTIVATE_SUCCESS'	=> 'The selected users have been deactivated successfully.',
4c79b5
	'USER_DELETE_SUCCESS'		=> 'The selected users have been deleted successfully.',
4c79b5
	'USER_PRUNE_FAILURE'		=> 'No users fit the selected criteria.',
4c79b5
4c79b5
	'WRONG_ACTIVE_JOINED_DATE'	=> 'The date entered is wrong, it is expected in YYYY-MM-DD format.',
4c79b5
));
4c79b5
4c79b5
// Forum Pruning
4c79b5
$lang = array_merge($lang, array(
4c79b5
	'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.',
4c79b5
4c79b5
	'FORUM_PRUNE'		=> 'Forum prune',
4c79b5
4c79b5
	'NO_PRUNE'			=> 'No forums pruned.',
4c79b5
4c79b5
	'SELECTED_FORUM'	=> 'Selected forum',
4c79b5
	'SELECTED_FORUMS'	=> 'Selected forums',
4c79b5
4c79b5
	'POSTS_PRUNED'					=> 'Posts pruned',
4c79b5
	'PRUNE_ANNOUNCEMENTS'			=> 'Prune announcements',
4c79b5
	'PRUNE_FINISHED_POLLS'			=> 'Prune closed polls',
4c79b5
	'PRUNE_FINISHED_POLLS_EXPLAIN'	=> 'Removes topics with polls which have ended.',
4c79b5
	'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.',
4c79b5
	'PRUNE_NOT_POSTED'				=> 'Days since last posted',
4c79b5
	'PRUNE_NOT_VIEWED'				=> 'Days since last viewed',
4c79b5
	'PRUNE_OLD_POLLS'				=> 'Prune old polls',
4c79b5
	'PRUNE_OLD_POLLS_EXPLAIN'		=> 'Removes topics with polls not voted in for post age days.',
4c79b5
	'PRUNE_STICKY'					=> 'Prune stickies',
4c79b5
	'PRUNE_SUCCESS'					=> 'Pruning of forums was successful.',
4c79b5
4c79b5
	'TOPICS_PRUNED'		=> 'Topics pruned',
4c79b5
));
4c79b5
4c79b5
?>