443
by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0 |
1 |
<?php
|
2 |
/**
|
|
3 |
*
|
|
4 |
* groups [English]
|
|
5 |
*
|
|
6 |
* @package language
|
|
7 |
* @version $Id: groups.php,v 1.22 2007/10/04 15:07:24 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 (!defined('IN_PHPBB')) |
|
17 |
{
|
|
18 |
exit; |
|
19 |
}
|
|
20 |
||
21 |
if (empty($lang) || !is_array($lang)) |
|
22 |
{
|
|
23 |
$lang = array(); |
|
24 |
}
|
|
25 |
||
26 |
// DEVELOPERS PLEASE NOTE
|
|
27 |
//
|
|
28 |
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
29 |
//
|
|
30 |
// Placeholders can now contain order information, e.g. instead of
|
|
31 |
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
32 |
// translators to re-order the output of data while ensuring it remains correct
|
|
33 |
//
|
|
34 |
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
35 |
// equally where a string contains only two placeholders which are used to wrap text
|
|
36 |
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
37 |
||
38 |
$lang = array_merge($lang, array( |
|
39 |
'ALREADY_DEFAULT_GROUP' => 'The selected group is already your default group.', |
|
40 |
'ALREADY_IN_GROUP' => 'You are already a member of the selected group.', |
|
41 |
'ALREADY_IN_GROUP_PENDING' => 'You already requested joining the selected group.', |
|
42 |
||
43 |
'CHANGED_DEFAULT_GROUP' => 'Successfully changed default group.', |
|
44 |
||
45 |
'GROUP_AVATAR' => 'Group avatar', |
|
46 |
'GROUP_CHANGE_DEFAULT' => 'Are you sure you want to change your default membership to the group “%s”?', |
|
47 |
'GROUP_CLOSED' => 'Closed', |
|
48 |
'GROUP_DESC' => 'Group description', |
|
49 |
'GROUP_HIDDEN' => 'Hidden', |
|
50 |
'GROUP_INFORMATION' => 'Usergroup information', |
|
51 |
'GROUP_IS_CLOSED' => 'This is a closed group, new members can only join upon invitation of a group leader.', |
|
52 |
'GROUP_IS_FREE' => 'This is a freely open group, all new members are welcome.', |
|
53 |
'GROUP_IS_HIDDEN' => 'This is a hidden group, only members of this group can view its membership.', |
|
54 |
'GROUP_IS_OPEN' => 'This is an open group, members can apply to join.', |
|
55 |
'GROUP_IS_SPECIAL' => 'This is a special group, special groups are managed by the board administrators.', |
|
56 |
'GROUP_JOIN' => 'Join group', |
|
57 |
'GROUP_JOIN_CONFIRM' => 'Are you sure you want to join the selected group?', |
|
58 |
'GROUP_JOIN_PENDING' => 'Request to join group', |
|
59 |
'GROUP_JOIN_PENDING_CONFIRM' => 'Are you sure you want to request joining the selected group?', |
|
60 |
'GROUP_JOINED' => 'Successfully joined selected group.', |
|
61 |
'GROUP_JOINED_PENDING' => 'Successfully requested group membership. Please wait for a group leader to approve your membership.', |
|
62 |
'GROUP_LIST' => 'Manage users', |
|
63 |
'GROUP_MEMBERS' => 'Group members', |
|
64 |
'GROUP_NAME' => 'Group name', |
|
65 |
'GROUP_OPEN' => 'Open', |
|
66 |
'GROUP_RANK' => 'Group rank', |
|
67 |
'GROUP_RESIGN_MEMBERSHIP' => 'Resign group membership', |
|
68 |
'GROUP_RESIGN_MEMBERSHIP_CONFIRM' => 'Are you sure you want to resign your membership from the selected group?', |
|
69 |
'GROUP_RESIGN_PENDING' => 'Resign a pending group membership', |
|
70 |
'GROUP_RESIGN_PENDING_CONFIRM' => 'Are you sure you want to resign your pending membership from the selected group?', |
|
71 |
'GROUP_RESIGNED_MEMBERSHIP' => 'You were successfully removed from the selected group.', |
|
72 |
'GROUP_RESIGNED_PENDING' => 'Your pending membership was successfully removed from the selected group.', |
|
73 |
'GROUP_TYPE' => 'Group type', |
|
74 |
'GROUP_UNDISCLOSED' => 'Hidden group', |
|
75 |
'FORUM_UNDISCLOSED' => 'Moderating hidden forum(s)', |
|
76 |
||
77 |
'LOGIN_EXPLAIN_GROUP' => 'You need to login to view group details.', |
|
78 |
||
79 |
'NO_LEADERS' => 'You are not a leader of any group.', |
|
80 |
'NOT_LEADER_OF_GROUP' => 'The requested operation cannot be taken because you are not a leader of the selected group.', |
|
81 |
'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.', |
|
82 |
'NOT_RESIGN_FROM_DEFAULT_GROUP' => 'You are not allowed to resign from your default group.', |
|
83 |
||
84 |
'PRIMARY_GROUP' => 'Primary group', |
|
85 |
||
86 |
'REMOVE_SELECTED' => 'Remove selected', |
|
87 |
||
88 |
'USER_GROUP_CHANGE' => 'From “%1$s” group to “%2$s”', |
|
89 |
'USER_GROUP_DEMOTE' => 'Demote leadership', |
|
90 |
'USER_GROUP_DEMOTE_CONFIRM' => 'Are you sure you want to demote as group leader from the selected group?', |
|
91 |
'USER_GROUP_DEMOTED' => 'Successfully demoted your leadership.', |
|
92 |
));
|
|
93 |
||
94 |
?>
|