Blame Identity/Webenv/App/phpBB/3.0.4/language/en/groups.php

f2e824
f2e824
/**
f2e824
*
f2e824
* groups [English]
f2e824
*
f2e824
* @package language
f2e824
* @version $Id: groups.php 8479 2008-03-29 00:22:48Z naderman $
f2e824
* @copyright (c) 2005 phpBB Group
f2e824
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
f2e824
*
f2e824
*/
f2e824
f2e824
/**
f2e824
* DO NOT CHANGE
f2e824
*/
f2e824
if (!defined('IN_PHPBB'))
f2e824
{
f2e824
	exit;
f2e824
}
f2e824
f2e824
if (empty($lang) || !is_array($lang))
f2e824
{
f2e824
	$lang = array();
f2e824
}
f2e824
f2e824
// DEVELOPERS PLEASE NOTE
f2e824
//
f2e824
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
f2e824
//
f2e824
// Placeholders can now contain order information, e.g. instead of
f2e824
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
f2e824
// translators to re-order the output of data while ensuring it remains correct
f2e824
//
f2e824
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
f2e824
// equally where a string contains only two placeholders which are used to wrap text
f2e824
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
f2e824
f2e824
$lang = array_merge($lang, array(
f2e824
	'ALREADY_DEFAULT_GROUP'		=> 'The selected group is already your default group.',
f2e824
	'ALREADY_IN_GROUP'			=> 'You are already a member of the selected group.',
f2e824
	'ALREADY_IN_GROUP_PENDING'	=> 'You already requested joining the selected group.',
f2e824
f2e824
	'CANNOT_JOIN_GROUP'			=> 'You are not able to join this group. You are only able to join open and freely open groups.',
f2e824
	'CANNOT_RESIGN_GROUP'		=> 'You are not able to resign from this group. You are only able to resign from open and freely open groups.',
f2e824
	'CHANGED_DEFAULT_GROUP'		=> 'Successfully changed default group.',
f2e824
f2e824
	'GROUP_AVATAR'						=> 'Group avatar',
f2e824
	'GROUP_CHANGE_DEFAULT'				=> 'Are you sure you want to change your default membership to the group “%s”?',
f2e824
	'GROUP_CLOSED'						=> 'Closed',
f2e824
	'GROUP_DESC'						=> 'Group description',
f2e824
	'GROUP_HIDDEN'						=> 'Hidden',
f2e824
	'GROUP_INFORMATION'					=> 'Usergroup information',
f2e824
	'GROUP_IS_CLOSED'					=> 'This is a closed group, new members can only join upon invitation of a group leader.',
f2e824
	'GROUP_IS_FREE'						=> 'This is a freely open group, all new members are welcome.',
f2e824
	'GROUP_IS_HIDDEN'					=> 'This is a hidden group, only members of this group can view its membership.',
f2e824
	'GROUP_IS_OPEN'						=> 'This is an open group, members can apply to join.',
f2e824
	'GROUP_IS_SPECIAL'					=> 'This is a special group, special groups are managed by the board administrators.',
f2e824
	'GROUP_JOIN'						=> 'Join group',
f2e824
	'GROUP_JOIN_CONFIRM'				=> 'Are you sure you want to join the selected group?',
f2e824
	'GROUP_JOIN_PENDING'				=> 'Request to join group',
f2e824
	'GROUP_JOIN_PENDING_CONFIRM'		=> 'Are you sure you want to request joining the selected group?',
f2e824
	'GROUP_JOINED'						=> 'Successfully joined selected group.',
f2e824
	'GROUP_JOINED_PENDING'				=> 'Successfully requested group membership. Please wait for a group leader to approve your membership.',
f2e824
	'GROUP_LIST'						=> 'Manage users',
f2e824
	'GROUP_MEMBERS'						=> 'Group members',
f2e824
	'GROUP_NAME'						=> 'Group name',
f2e824
	'GROUP_OPEN'						=> 'Open',
f2e824
	'GROUP_RANK'						=> 'Group rank',
f2e824
	'GROUP_RESIGN_MEMBERSHIP'			=> 'Resign group membership',
f2e824
	'GROUP_RESIGN_MEMBERSHIP_CONFIRM'	=> 'Are you sure you want to resign your membership from the selected group?',
f2e824
	'GROUP_RESIGN_PENDING'				=> 'Resign a pending group membership',
f2e824
	'GROUP_RESIGN_PENDING_CONFIRM'		=> 'Are you sure you want to resign your pending membership from the selected group?',
f2e824
	'GROUP_RESIGNED_MEMBERSHIP'			=> 'You were successfully removed from the selected group.',
f2e824
	'GROUP_RESIGNED_PENDING'			=> 'Your pending membership was successfully removed from the selected group.',
f2e824
	'GROUP_TYPE'						=> 'Group type',
f2e824
	'GROUP_UNDISCLOSED'					=> 'Hidden group',
f2e824
	'FORUM_UNDISCLOSED'					=> 'Moderating hidden forum(s)',
f2e824
f2e824
	'LOGIN_EXPLAIN_GROUP'	=> 'You need to login to view group details.',
f2e824
f2e824
	'NO_LEADERS'					=> 'You are not a leader of any group.',
f2e824
	'NOT_LEADER_OF_GROUP'			=> 'The requested operation cannot be taken because you are not a leader of the selected group.',
f2e824
	'NOT_MEMBER_OF_GROUP'			=> 'The requested operation cannot be taken because you are not a member of the selected group or your membership has not been approved yet.',
f2e824
	'NOT_RESIGN_FROM_DEFAULT_GROUP'	=> 'You are not allowed to resign from your default group.',
f2e824
	
f2e824
	'PRIMARY_GROUP'		=> 'Primary group',
f2e824
f2e824
	'REMOVE_SELECTED'		=> 'Remove selected',
f2e824
f2e824
	'USER_GROUP_CHANGE'			=> 'From “%1$s” group to “%2$s”',
f2e824
	'USER_GROUP_DEMOTE'			=> 'Demote leadership',
f2e824
	'USER_GROUP_DEMOTE_CONFIRM'	=> 'Are you sure you want to demote as group leader from the selected group?',
f2e824
	'USER_GROUP_DEMOTED'		=> 'Successfully demoted your leadership.',
f2e824
));
f2e824
f2e824
?>