Blame Identity/Models/Html/phpBB/3.0.4/language/en/acp/prune.php

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