Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

groups.php

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 8.78 KiB


001  <?php
002  /**
003  *
004  * This file is part of the phpBB Forum Software package.
005  *
006  * @copyright (c) phpBB Limited <https://www.phpbb.com>
007  * @license GNU General Public License, version 2 (GPL-2.0)
008  *
009  * For full copyright and license information, please see
010  * the docs/CREDITS.txt file.
011  *
012  */
013   
014  /**
015  * DO NOT CHANGE
016  */
017  if (!defined('IN_PHPBB'))
018  {
019      exit;
020  }
021   
022  if (empty($lang) || !is_array($lang))
023  {
024      $lang = array();
025  }
026   
027  // DEVELOPERS PLEASE NOTE
028  //
029  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
030  //
031  // Placeholders can now contain order information, e.g. instead of
032  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
033  // translators to re-order the output of data while ensuring it remains correct
034  //
035  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
036  // equally where a string contains only two placeholders which are used to wrap text
037  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
038   
039  $lang = array_merge($lang, array(
040      'ACP_GROUPS_MANAGE_EXPLAIN'        => 'From this panel you can administer 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.',
041      'ADD_GROUP_CATEGORY'            => 'Add category',
042      'ADD_USERS'                        => 'Add users',
043      '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.',
044   
045      'COPY_PERMISSIONS'                => 'Copy permissions from',
046      'COPY_PERMISSIONS_EXPLAIN'        => 'Once created, the group will have the same permissions as the one you select here.',
047      'CREATE_GROUP'                    => 'Create new group',
048   
049      'GROUPS_NO_MEMBERS'                => 'This group has no members',
050      'GROUPS_NO_MODS'                => 'No group leaders defined',
051   
052      'GROUP_APPROVE'                    => 'Approve member',
053      'GROUP_APPROVED'                => 'Approved members',
054      'GROUP_AVATAR'                    => 'Group avatar',
055      'GROUP_AVATAR_EXPLAIN'            => 'This image will be displayed in the Group Control Panel.',
056      'GROUP_CATEGORY_NAME'            => 'Category name',
057      'GROUP_CLOSED'                    => 'Closed',
058      'GROUP_COLOR'                    => 'Group colour',
059      'GROUP_COLOR_EXPLAIN'            => 'Defines the colour members’ usernames will appear in, leave blank for user default.',
060      'GROUP_CONFIRM_ADD_USERS'        => array(
061          1    => 'Are you sure that you want to add the user %2$s to the group?',
062          2    => 'Are you sure that you want to add the users %2$s to the group?',
063      ),
064      'GROUP_CREATED'                    => 'Group has been created successfully.',
065      'GROUP_DEFAULT'                    => 'Make group default for member',
066      'GROUP_DEFS_UPDATED'            => 'Default group set for all selected members.',
067      'GROUP_DELETE'                    => 'Remove member from group',
068      'GROUP_DELETED'                    => 'Group deleted and user default groups set successfully.',
069      'GROUP_DEMOTE'                    => 'Demote group leader',
070      'GROUP_DESC'                    => 'Group description',
071      'GROUP_DETAILS'                    => 'Group details',
072      '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.',
073      'GROUP_ERR_USERS_EXIST'            => 'The specified users are already members of this group.',
074      'GROUP_FOUNDER_MANAGE'            => 'Founder manage only',
075      '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.',
076      'GROUP_HIDDEN'                    => 'Hidden',
077      'GROUP_LANG'                    => 'Group language',
078      'GROUP_LEAD'                    => 'Group leaders',
079      'GROUP_LEADERS_ADDED'            => 'New leaders added to group successfully.',
080      'GROUP_LEGEND'                    => 'Display group in legend',
081      'GROUP_LIST'                    => 'Current members',
082      '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.',
083      'GROUP_MEMBERS'                    => 'Group members',
084      '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.',
085      'GROUP_MESSAGE_LIMIT'            => 'Group private message limit per folder',
086      '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.',
087      'GROUP_MODS_ADDED'                => 'New group leaders added successfully.',
088      'GROUP_MODS_DEMOTED'            => 'Group leaders demoted successfully.',
089      'GROUP_MODS_PROMOTED'            => 'Group members promoted successfully.',
090      'GROUP_NAME'                    => 'Group name',
091      'GROUP_NAME_TAKEN'                => 'The group name you entered is already in use, please select an alternative.',
092      'GROUP_OPEN'                    => 'Open',
093      'GROUP_PENDING'                    => 'Pending members',
094      'GROUP_MAX_RECIPIENTS'            => 'Maximum number of allowed recipients per private message',
095      'GROUP_MAX_RECIPIENTS_EXPLAIN'    => 'The maximum number of allowed recipients in a private message. If 0 is entered, the board-wide setting is used.',
096      'GROUP_OPTIONS_SAVE'            => 'Group wide options',
097      'GROUP_PROMOTE'                    => 'Promote to group leader',
098      'GROUP_RANK'                    => 'Group rank',
099      'GROUP_RECEIVE_PM'                => 'Group able to receive private messages',
100      'GROUP_RECEIVE_PM_EXPLAIN'        => 'Please note that hidden groups are not able to be messaged, regardless of this setting.',
101      'GROUP_REQUEST'                    => 'Request',
102      'GROUP_SETTINGS_SAVE'            => 'Group wide settings',
103      'GROUP_SKIP_AUTH'                => 'Exempt group leader from permissions',
104      'GROUP_SKIP_AUTH_EXPLAIN'        => 'If enabled group leader no longer inherit permissions from the group.',
105      'GROUP_SPECIAL'                    => 'Pre-defined',
106      'GROUP_TEAMPAGE'                => 'Display group on teampage',
107      'GROUP_TYPE'                    => 'Group type',
108      'GROUP_TYPE_EXPLAIN'            => 'This determines which users can join or view this group.',
109      'GROUP_UPDATED'                    => 'Group preferences updated successfully.',
110   
111      'GROUP_USERS_ADDED'                => 'New users added to group successfully.',
112      'GROUP_USERS_EXIST'                => 'The selected users are already members.',
113      'GROUP_USERS_REMOVE'            => 'Users removed from group and new defaults set successfully.',
114   
115      'LEGEND_EXPLAIN'                => 'These are the groups which are displayed in the group legend:',
116      'LEGEND_SETTINGS'                => 'Legend settings',
117      'LEGEND_SORT_GROUPNAME'            => 'Sort legend by group name',
118      'LEGEND_SORT_GROUPNAME_EXPLAIN'    => 'The order below is ignored when this option is enabled.',
119   
120      'MANAGE_LEGEND'            => 'Manage group legend',
121      'MANAGE_TEAMPAGE'        => 'Manage teampage',
122      'MAKE_DEFAULT_FOR_ALL'    => 'Make default group for every member',
123      'MEMBERS'                => 'Members',
124   
125      'NO_GROUP'                    => 'No group specified.',
126      'NO_GROUPS_ADDED'            => 'No groups added yet.',
127      'NO_GROUPS_CREATED'            => 'No groups created yet.',
128      'NO_PERMISSIONS'            => 'Do not copy permissions',
129      'NO_USERS'                    => 'You haven’t entered any users.',
130      'NO_USERS_ADDED'            => 'No users were added to the group.',
131      'NO_VALID_USERS'            => 'You haven’t entered any users eligible for that action.',
132   
133      'SELECT_GROUP'                => 'Select a group',
134      'SPECIAL_GROUPS'            => 'Pre-defined groups',
135      '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.',
136   
137      'TEAMPAGE'                    => 'Teampage',
138      'TEAMPAGE_DISP_ALL'            => 'All memberships',
139      'TEAMPAGE_DISP_DEFAULT'        => 'User’s default group only',
140      'TEAMPAGE_DISP_FIRST'        => 'First membership only',
141      'TEAMPAGE_EXPLAIN'            => 'These are the groups which are displayed on the teampage:',
142      'TEAMPAGE_FORUMS'            => 'Display moderated forums',
143      'TEAMPAGE_FORUMS_EXPLAIN'    => 'If set to yes, moderators will have a list with all of the forums where they have moderator permissions displayed in their row. This can be very database intensive for big boards.',
144      'TEAMPAGE_MEMBERSHIPS'        => 'Display user memberships',
145      'TEAMPAGE_SETTINGS'            => 'Teampage settings',
146      'TOTAL_MEMBERS'                => 'Members',
147   
148      'USERS_APPROVED'                => 'Users approved successfully.',
149      'USER_DEFAULT'                    => 'User default',
150      'USER_DEF_GROUPS'                => 'User defined groups',
151      '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.',
152      'USER_GROUP_DEFAULT'            => 'Set as default group',
153      'USER_GROUP_DEFAULT_EXPLAIN'    => 'Saying yes here will set this group as the default group for the added users.',
154      'USER_GROUP_LEADER'                => 'Set as group leader',
155  ));
156