|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* acp_users [English]
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @package language
|
|
|
4c79b5 |
* @version $Id: users.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 |
$lang = array_merge($lang, array(
|
|
|
4c79b5 |
'ADMIN_SIG_PREVIEW' => 'Signature preview',
|
|
|
4c79b5 |
'AT_LEAST_ONE_FOUNDER' => 'You are not able to change this founder to a normal user. There needs to be at least one founder enabled for this board. If you want to change this users founder status, promote another user to be a founder first.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'BAN_ALREADY_ENTERED' => 'The ban had been previously entered successfully. The ban list has not been updated.',
|
|
|
4c79b5 |
'BAN_SUCCESSFUL' => 'Ban entered successfully.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'CANNOT_BAN_FOUNDER' => 'You are not allowed to ban founder accounts.',
|
|
|
4c79b5 |
'CANNOT_BAN_YOURSELF' => 'You are not allowed to ban yourself.',
|
|
|
4c79b5 |
'CANNOT_DEACTIVATE_BOT' => 'You are not allowed to deactivate bot accounts. Please deactivate the bot within the bots page instead.',
|
|
|
4c79b5 |
'CANNOT_DEACTIVATE_FOUNDER' => 'You are not allowed to deactivate founder accounts.',
|
|
|
4c79b5 |
'CANNOT_DEACTIVATE_YOURSELF' => 'You are not allowed to deactivate your own account.',
|
|
|
4c79b5 |
'CANNOT_FORCE_REACT_BOT' => 'You are not allowed to force reactivation on bot accounts. Please reactivate the bot within the bots page instead.',
|
|
|
4c79b5 |
'CANNOT_FORCE_REACT_FOUNDER' => 'You are not allowed to force reactivation on founder accounts.',
|
|
|
4c79b5 |
'CANNOT_FORCE_REACT_YOURSELF' => 'You are not allowed to force reactivation of your own account.',
|
|
|
4c79b5 |
'CANNOT_REMOVE_ANONYMOUS' => 'You are not able to remove the guest user account.',
|
|
|
4c79b5 |
'CANNOT_REMOVE_YOURSELF' => 'You are not allowed to remove your own user account.',
|
|
|
4c79b5 |
'CANNOT_SET_FOUNDER_IGNORED' => 'You are not able to promote ignored users to be founders.',
|
|
|
4c79b5 |
'CANNOT_SET_FOUNDER_INACTIVE' => 'You need to activate users before you promote them to founders, only activated users are able to be promoted.',
|
|
|
4c79b5 |
'CONFIRM_EMAIL_EXPLAIN' => 'You only need to specify this if you are changing the users e-mail address.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'DELETE_POSTS' => 'Delete posts',
|
|
|
4c79b5 |
'DELETE_USER' => 'Delete user',
|
|
|
4c79b5 |
'DELETE_USER_EXPLAIN' => 'Please note that deleting a user is final, they cannot be recovered.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'FORCE_REACTIVATION_SUCCESS' => 'Successfully forced reactivation.',
|
|
|
4c79b5 |
'FOUNDER' => 'Founder',
|
|
|
4c79b5 |
'FOUNDER_EXPLAIN' => 'Founders have all administrative permissions and can never be banned, deleted or altered by non-founder members.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'GROUP_APPROVE' => 'Approve member',
|
|
|
4c79b5 |
'GROUP_DEFAULT' => 'Make group default for member',
|
|
|
4c79b5 |
'GROUP_DELETE' => 'Remove member from group',
|
|
|
4c79b5 |
'GROUP_DEMOTE' => 'Demote group leader',
|
|
|
4c79b5 |
'GROUP_PROMOTE' => 'Promote to group leader',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'IP_WHOIS_FOR' => 'IP whois for %s',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'LAST_ACTIVE' => 'Last active',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'MOVE_POSTS_EXPLAIN' => 'Please select the forum to which you wish to move all the posts this user has made.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'NO_SPECIAL_RANK' => 'No special rank assigned',
|
|
|
4c79b5 |
'NOT_MANAGE_FOUNDER' => 'You tried to manage a user with founder status. Only founders are allowed to manage other founders.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'QUICK_TOOLS' => 'Quick tools',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'REGISTERED' => 'Registered',
|
|
|
4c79b5 |
'REGISTERED_IP' => 'Registered from IP',
|
|
|
4c79b5 |
'RETAIN_POSTS' => 'Retain posts',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'SELECT_FORM' => 'Select form',
|
|
|
4c79b5 |
'SELECT_USER' => 'Select user',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'USER_ADMIN' => 'User administration',
|
|
|
4c79b5 |
'USER_ADMIN_ACTIVATE' => 'Activate account',
|
|
|
4c79b5 |
'USER_ADMIN_ACTIVATED' => 'User activated successfully.',
|
|
|
4c79b5 |
'USER_ADMIN_AVATAR_REMOVED' => 'Successfully removed avatar from user account.',
|
|
|
4c79b5 |
'USER_ADMIN_BAN_EMAIL' => 'Ban by e-mail',
|
|
|
4c79b5 |
'USER_ADMIN_BAN_EMAIL_REASON' => 'E-mail address banned via user management',
|
|
|
4c79b5 |
'USER_ADMIN_BAN_IP' => 'Ban by IP',
|
|
|
4c79b5 |
'USER_ADMIN_BAN_IP_REASON' => 'IP banned via user management',
|
|
|
4c79b5 |
'USER_ADMIN_BAN_NAME_REASON' => 'Username banned via user management',
|
|
|
4c79b5 |
'USER_ADMIN_BAN_USER' => 'Ban by username',
|
|
|
4c79b5 |
'USER_ADMIN_DEACTIVATE' => 'Deactivate account',
|
|
|
4c79b5 |
'USER_ADMIN_DEACTIVED' => 'User deactivated successfully.',
|
|
|
4c79b5 |
'USER_ADMIN_DEL_ATTACH' => 'Delete all attachments',
|
|
|
4c79b5 |
'USER_ADMIN_DEL_AVATAR' => 'Delete avatar',
|
|
|
4c79b5 |
'USER_ADMIN_DEL_POSTS' => 'Delete all posts',
|
|
|
4c79b5 |
'USER_ADMIN_DEL_SIG' => 'Delete signature',
|
|
|
4c79b5 |
'USER_ADMIN_EXPLAIN' => 'Here you can change your users information and certain specific options.',
|
|
|
4c79b5 |
'USER_ADMIN_FORCE' => 'Force reactivation',
|
|
|
4c79b5 |
'USER_ADMIN_MOVE_POSTS' => 'Move all posts',
|
|
|
4c79b5 |
'USER_ADMIN_SIG_REMOVED' => 'Successfully removed signature from user account.',
|
|
|
4c79b5 |
'USER_ATTACHMENTS_REMOVED' => 'Successfully removed all attachments made by this user.',
|
|
|
4c79b5 |
'USER_AVATAR_UPDATED' => 'Successfully updated user avatars details.',
|
|
|
4c79b5 |
'USER_CUSTOM_PROFILE_FIELDS' => 'Custom profile fields',
|
|
|
4c79b5 |
'USER_DELETED' => 'User deleted successfully.',
|
|
|
4c79b5 |
'USER_GROUP_ADD' => 'Add user to group',
|
|
|
4c79b5 |
'USER_GROUP_NORMAL' => 'User defined groups user is a member of',
|
|
|
4c79b5 |
'USER_GROUP_PENDING' => 'Groups user is in pending mode',
|
|
|
4c79b5 |
'USER_GROUP_SPECIAL' => 'Pre-defined groups user is a member of',
|
|
|
4c79b5 |
'USER_NO_ATTACHMENTS' => 'There are no attached files to display.',
|
|
|
4c79b5 |
'USER_OVERVIEW_UPDATED' => 'User details updated.',
|
|
|
4c79b5 |
'USER_POSTS_DELETED' => 'Successfully removed all posts made by this user.',
|
|
|
4c79b5 |
'USER_POSTS_MOVED' => 'Successfully moved users posts to target forum.',
|
|
|
4c79b5 |
'USER_PREFS_UPDATED' => 'User preferences updated.',
|
|
|
4c79b5 |
'USER_PROFILE' => 'User profile',
|
|
|
4c79b5 |
'USER_PROFILE_UPDATED' => 'User profile updated.',
|
|
|
4c79b5 |
'USER_RANK' => 'User rank',
|
|
|
4c79b5 |
'USER_RANK_UPDATED' => 'User rank updated.',
|
|
|
4c79b5 |
'USER_SIG_UPDATED' => 'User signature successfully updated.',
|
|
|
4c79b5 |
'USER_TOOLS' => 'Basic tools',
|
|
|
4c79b5 |
));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
?>
|