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

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* acp_groups [English]
4c79b5
*
4c79b5
* @package language
4c79b5
* @version $Id: groups.php 8911 2008-09-23 13:03:33Z acydburn $
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
	'ACP_GROUPS_MANAGE_EXPLAIN'		=> 'From this panel you can administrate all your usergroups. You can delete, create and edit existing groups. Furthermore, you may choose group leaders, toggle open/hidden/closed group status and set the group name and description.',
4c79b5
	'ADD_USERS'						=> 'Add users',
4c79b5
	'ADD_USERS_EXPLAIN'				=> 'Here you can add new users to the group. You may select whether this group becomes the new default for the selected users. Additionally you can define them as group leaders. Please enter each username on a separate line.',
4c79b5
4c79b5
	'COPY_PERMISSIONS'				=> 'Copy permissions from',
4c79b5
	'COPY_PERMISSIONS_EXPLAIN'		=> 'Once created, the group will have the same permissions as the one you select here.',
4c79b5
	'CREATE_GROUP'					=> 'Create new group',
4c79b5
4c79b5
	'GROUPS_NO_MEMBERS'				=> 'This group has no members',
4c79b5
	'GROUPS_NO_MODS'				=> 'No group leaders defined',
4c79b5
4c79b5
	'GROUP_APPROVE'					=> 'Approve member',
4c79b5
	'GROUP_APPROVED'				=> 'Approved members',
4c79b5
	'GROUP_AVATAR'					=> 'Group avatar',
4c79b5
	'GROUP_AVATAR_EXPLAIN'			=> 'This image will be displayed in the Group Control Panel.',
4c79b5
	'GROUP_CLOSED'					=> 'Closed',
4c79b5
	'GROUP_COLOR'					=> 'Group colour',
4c79b5
	'GROUP_COLOR_EXPLAIN'			=> 'Defines the colour members’ usernames will appear in, leave blank for user default.',
4c79b5
	'GROUP_CONFIRM_ADD_USER'		=> 'Are you sure that you want to add the user %1$s to the group?',
4c79b5
	'GROUP_CONFIRM_ADD_USERS'		=> 'Are you sure that you want to add the users %1$s to the group?',
4c79b5
	'GROUP_CREATED'					=> 'Group has been created successfully.',
4c79b5
	'GROUP_DEFAULT'					=> 'Make group default for member',
4c79b5
	'GROUP_DEFS_UPDATED'			=> 'Default group set for all selected members.',
4c79b5
	'GROUP_DELETE'					=> 'Remove member from group',
4c79b5
	'GROUP_DELETED'					=> 'Group deleted and user default groups set successfully.',
4c79b5
	'GROUP_DEMOTE'					=> 'Demote group leader',
4c79b5
	'GROUP_DESC'					=> 'Group description',
4c79b5
	'GROUP_DETAILS'					=> 'Group details',
4c79b5
	'GROUP_EDIT_EXPLAIN'			=> 'Here you can edit an existing group. You can change its name, description and type (open, closed, etc.). You can also set certain group wide options such as colouration, rank, etc. Changes made here override users’ current settings. Please note that group members can override group-avatar settings, unless you set appropriate user permissions.',
4c79b5
	'GROUP_ERR_USERS_EXIST'			=> 'The specified users are already members of this group.',
4c79b5
	'GROUP_FOUNDER_MANAGE'			=> 'Founder manage only',
4c79b5
	'GROUP_FOUNDER_MANAGE_EXPLAIN'	=> 'Restrict management of this group to founders only. Users having group permissions are still able to see this group as well as this group’s members.',
4c79b5
	'GROUP_HIDDEN'					=> 'Hidden',
4c79b5
	'GROUP_LANG'					=> 'Group language',
4c79b5
	'GROUP_LEAD'					=> 'Group leaders',
4c79b5
	'GROUP_LEADERS_ADDED'			=> 'New leaders added to group successfully.',
4c79b5
	'GROUP_LEGEND'					=> 'Display group in legend',
4c79b5
	'GROUP_LIST'					=> 'Current members',
4c79b5
	'GROUP_LIST_EXPLAIN'			=> 'This is a complete list of all the current users with membership of this group. You can delete members (except in certain special groups) or add new ones as you see fit.',
4c79b5
	'GROUP_MEMBERS'					=> 'Group members',
4c79b5
	'GROUP_MEMBERS_EXPLAIN'			=> 'This is a complete listing of all the members of this usergroup. It includes separate sections for leaders, pending and existing members. From here you can manage all aspects of who has membership of this group and what their role is. To remove a leader but keep them in the group use Demote rather than delete. Similarly use Promote to make an existing member a leader.',
4c79b5
	'GROUP_MESSAGE_LIMIT'			=> 'Group private message limit per folder',
4c79b5
	'GROUP_MESSAGE_LIMIT_EXPLAIN'	=> 'This setting overrides the per-user folder message limit. A value of 0 means the user default limit will be used.',
4c79b5
	'GROUP_MODS_ADDED'				=> 'New group leaders added successfully.',
4c79b5
	'GROUP_MODS_DEMOTED'			=> 'Group leaders demoted successfully.',
4c79b5
	'GROUP_MODS_PROMOTED'			=> 'Group members promoted successfully.',
4c79b5
	'GROUP_NAME'					=> 'Group name',
4c79b5
	'GROUP_NAME_TAKEN'				=> 'The group name you entered is already in use, please select an alternative.',
4c79b5
	'GROUP_OPEN'					=> 'Open',
4c79b5
	'GROUP_PENDING'					=> 'Pending members',
4c79b5
	'GROUP_MAX_RECIPIENTS'			=> 'Maximum number of allowed recipients per private message',
4c79b5
	'GROUP_MAX_RECIPIENTS_EXPLAIN'	=> 'The maximum number of allowed recipients in a private message. If 0 is entered, the board-wide setting is used.',
4c79b5
	'GROUP_PROMOTE'					=> 'Promote to group leader',
4c79b5
	'GROUP_RANK'					=> 'Group rank',
4c79b5
	'GROUP_RECEIVE_PM'				=> 'Group able to receive private messages',
4c79b5
	'GROUP_RECEIVE_PM_EXPLAIN'		=> 'Please note that hidden groups are not able to be messaged, regardless of this setting.',
4c79b5
	'GROUP_REQUEST'					=> 'Request',
4c79b5
	'GROUP_SETTINGS_SAVE'			=> 'Group wide settings',
4c79b5
	'GROUP_TYPE'					=> 'Group type',
4c79b5
	'GROUP_TYPE_EXPLAIN'			=> 'This determines which users can join or view this group.',
4c79b5
	'GROUP_UPDATED'					=> 'Group preferences updated successfully.',
4c79b5
	
4c79b5
	'GROUP_USERS_ADDED'				=> 'New users added to group successfully.',
4c79b5
	'GROUP_USERS_EXIST'				=> 'The selected users are already members.',
4c79b5
	'GROUP_USERS_REMOVE'			=> 'Users removed from group and new defaults set successfully.',
4c79b5
4c79b5
	'MAKE_DEFAULT_FOR_ALL'	=> 'Make default group for every member',
4c79b5
	'MEMBERS'				=> 'Members',
4c79b5
4c79b5
	'NO_GROUP'					=> 'No group specified.',
4c79b5
	'NO_GROUPS_CREATED'			=> 'No groups created yet.',
4c79b5
	'NO_PERMISSIONS'			=> 'Do not copy permissions',
4c79b5
	'NO_USERS'					=> 'You haven’t entered any users.',
4c79b5
	'NO_USERS_ADDED'			=> 'No users were added to the group.',
4c79b5
	'NO_VALID_USERS'			=> 'You haven’t entered any users eligible for that action.',
4c79b5
4c79b5
	'SPECIAL_GROUPS'			=> 'Pre-defined groups',
4c79b5
	'SPECIAL_GROUPS_EXPLAIN'	=> 'Pre-defined groups are special groups, they cannot be deleted or directly modified. However you can still add users and alter basic settings.',
4c79b5
4c79b5
	'TOTAL_MEMBERS'				=> 'Members',
4c79b5
4c79b5
	'USERS_APPROVED'				=> 'Users approved successfully.',
4c79b5
	'USER_DEFAULT'					=> 'User default',
4c79b5
	'USER_DEF_GROUPS'				=> 'User defined groups',
4c79b5
	'USER_DEF_GROUPS_EXPLAIN'		=> 'These are groups created by you or another admin on this board. You can manage memberships as well as edit group properties or even delete the group.',
4c79b5
	'USER_GROUP_DEFAULT'			=> 'Set as default group',
4c79b5
	'USER_GROUP_DEFAULT_EXPLAIN'	=> 'Saying yes here will set this group as the default group for the added users.',
4c79b5
	'USER_GROUP_LEADER'				=> 'Set as group leader',
4c79b5
));
4c79b5
4c79b5
?>