Blame Identity/Webenv/phpBB/3.0.4/language/en/acp/prune.php

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