[ Index ] |
PHP Cross Reference of phpBB 3.0 Beta 3 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * acp_users [English] 5 * 6 * @package language 7 * @version $Id: users.php,v 1.18 2006/11/12 14:13:26 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 (empty($lang) || !is_array($lang)) 17 { 18 $lang = array(); 19 } 20 21 // DEVELOPERS PLEASE NOTE 22 // 23 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 24 // 25 // Placeholders can now contain order information, e.g. instead of 26 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 27 // translators to re-order the output of data while ensuring it remains correct 28 // 29 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 30 // equally where a string contains only two placeholders which are used to wrap text 31 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 32 33 $lang = array_merge($lang, array( 34 'ADMIN_SIG_PREVIEW' => 'Signature preview', 35 '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.', 36 37 'BAN_SUCCESSFUL' => 'Ban entered successfully.', 38 39 'CANNOT_BAN_FOUNDER' => 'You are not allowed to ban founder accounts.', 40 'CANNOT_BAN_YOURSELF' => 'You are not allowed to ban yourself.', 41 'CANNOT_DEACTIVATE_BOT' => 'You are not allowed to deactivate bot accounts. Please deactivate the bot instead.', 42 'CANNOT_DEACTIVATE_FOUNDER' => 'You are not allowed to deactivate founder accounts.', 43 'CANNOT_DEACTIVATE_YOURSELF' => 'You are not allowed to deactivate your own account.', 44 'CANNOT_FORCE_REACT_BOT' => 'You are not allowed to force reactivation on bot accounts. Please deactivate the bot instead.', 45 'CANNOT_FORCE_REACT_FOUNDER' => 'You are not allowed to force reactivation on founder accounts.', 46 'CANNOT_FORCE_REACT_YOURSELF' => 'You are not allowed to force reactivation of your own account.', 47 'CANNOT_REMOVE_ANONYMOUS' => 'You are not able to remove the guest user account.', 48 'CANNOT_REMOVE_YOURSELF' => 'You are not allowed to remove your own user account.', 49 'CANNOT_SET_FOUNDER_BOT' => 'You are not able to promote ignored users to be founders.', 50 'CANNOT_SET_FOUNDER_INACTIVE' => 'You need to activate users before you promote them to founders, only activated users are able to be promoted.', 51 'CONFIRM_EMAIL_EXPLAIN' => 'You only need to specify this if you are changing the users email address.', 52 53 'DELETE_POSTS' => 'Delete posts', 54 'DELETE_USER' => 'Delete user', 55 'DELETE_USER_EXPLAIN' => 'Please note that deleting a user is final, they cannot be recovered', 56 57 'FORCE_REACTIVATION_SUCCESS' => 'Successfully forced re-activation.', 58 'FOUNDER' => 'Founder', 59 'FOUNDER_EXPLAIN' => 'Founders have all admin permissions and can never be banned, deleted or altered by non-founder members', 60 61 'GROUP_DEFAULT' => 'Default', 62 'GROUP_DELETE' => 'Delete', 63 'GROUP_DEMOTE' => 'Demote', 64 'GROUP_PROMOTE' => 'Promote', 65 66 'IP_WHOIS_FOR' => 'IP whois for %s', 67 68 'LAST_ACTIVE' => 'Last active', 69 70 'MOVE_POSTS_EXPLAIN' => 'Please select the forum to which you wish to move all the posts this user has made.', 71 72 'NO_SPECIAL_RANK' => 'No special rank assigned', 73 'NOT_MANAGE_FOUNDER' => 'You tried to manage a user with founder status. Only founders are allowed to manage other founders.', 74 75 'QUICK_TOOLS' => 'Quick tools', 76 77 'REGISTERED' => 'Registered', 78 'REGISTERED_IP' => 'Registered from IP', 79 'RETAIN_POSTS' => 'Retain posts', 80 81 'SELECT_FORM' => 'Select form', 82 'SELECT_USER' => 'Select User', 83 84 'USER_ADMIN' => 'User administration', 85 'USER_ADMIN_ACTIVATE' => 'Activate account', 86 'USER_ADMIN_ACTIVATED' => 'User activated successfully.', 87 'USER_ADMIN_AVATAR_REMOVED' => 'Successfully removed avatar from user account.', 88 'USER_ADMIN_BAN_EMAIL' => 'Ban by email', 89 'USER_ADMIN_BAN_EMAIL_REASON' => 'Email address banned via user management', 90 'USER_ADMIN_BAN_IP' => 'Ban by IP', 91 'USER_ADMIN_BAN_IP_REASON' => 'IP banned via user management', 92 'USER_ADMIN_BAN_NAME_REASON' => 'Username banned via user management', 93 'USER_ADMIN_BAN_USER' => 'Ban by username', 94 'USER_ADMIN_DEACTIVATE' => 'Deactivate account', 95 'USER_ADMIN_DEACTIVED' => 'User deactivated successfully.', 96 'USER_ADMIN_DEL_ATTACH' => 'Delete all attachments', 97 'USER_ADMIN_DEL_AVATAR' => 'Delete avatar', 98 'USER_ADMIN_DEL_POSTS' => 'Delete all posts', 99 'USER_ADMIN_DEL_SIG' => 'Delete signature', 100 'USER_ADMIN_EXPLAIN' => 'Here you can change your users information and certain specific options. To modify the users permissions please use the user and group permissions system.', 101 'USER_ADMIN_FORCE' => 'Force re-activation', 102 'USER_ADMIN_MOVE_POSTS' => 'Move all posts', 103 'USER_ADMIN_SIG_REMOVED' => 'Successfully removed signature from user account.', 104 'USER_ATTACHMENTS_REMOVED' => 'Successfully removed all attachments made by this user.', 105 'USER_AVATAR_UPDATED' => 'Successfully updated user avatars details.', 106 'USER_CUSTOM_PROFILE_FIELDS' => 'Custom profile fields', 107 'USER_DELETED' => 'User deleted successfully.', 108 'USER_GROUP_ADD' => 'Add user to group', 109 'USER_GROUP_NORMAL' => 'Normal groups user is a member of', 110 'USER_GROUP_PENDING' => 'Groups user is in pending mode', 111 'USER_GROUP_SPECIAL' => 'Special groups user is a member of', 112 'USER_IS_INACTIVE' => 'User is inactive', 113 'USER_OVERVIEW_UPDATED' => 'User details updated.', 114 'USER_POSTS_DELETED' => 'Successfully removed all posts made by this user.', 115 'USER_POSTS_MOVED' => 'Successfully moved users posts to target forum.', 116 'USER_PREFS_UPDATED' => 'User preferences updated.', 117 'USER_PROFILE' => 'User Profile', 118 'USER_PROFILE_UPDATED' => 'User profile updated.', 119 'USER_RANK' => 'User Rank', 120 'USER_RANK_UPDATED' => 'User rank updated.', 121 'USER_SIG_UPDATED' => 'User signature successfully updated.', 122 'USER_TOOLS' => 'Basic tools', 123 124 'WARNINGS_EXPLAIN' => 'You can directly alter the warnings this users has received.', 125 )); 126 127 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 22 00:35:05 2006 | Cross-referenced by PHPXref 0.6 |