mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
Merge remote-tracking branch 'remotes/nickv/ticket/10411-2' into develop
# By Joas Schilling # Via Joas Schilling * remotes/nickv/ticket/10411-2: (33 commits) [ticket/10411] Fix call to function on non-object $db->...() [ticket/10411] Remove ajax delete, so the page is refreshed [ticket/10411] Update schema file with new table and remove the column [ticket/10411] Add unit tests for move() with values >1 [ticket/10411] Add migrations file for teampage table [ticket/10411] Revert database_update.php changes from for easier update [ticket/10411] Add maxlength to category name input field [ticket/10411] Test for thrown exceptions when group does not exist [ticket/10411] Catch exceptions from grouppositions [ticket/10411] Throw exceptions instead of using trigger_error() [ticket/10411] Add return values to add/delete function [ticket/10411] Add return value to move functions [ticket/10411] Fix typehinting and change private to protected [ticket/10411] Use template loops instead of defining the html in php files [ticket/10411] Ensure we only get services that do exist [ticket/10411] Add a comment why we left join the group table [ticket/10411] Rename template variable CUR_ to CURRENT_ [ticket/10411] Move globals to the top and use array for cache destroy [ticket/10411] Use new ajax callback name row_up/row_down [ticket/10411] Fix logic error when editing/creating a group ...
This commit is contained in:
@@ -36,6 +36,7 @@ if (empty($lang) || !is_array($lang))
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'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.',
|
||||
'ADD_GROUP_CATEGORY' => 'Add category',
|
||||
'ADD_USERS' => 'Add users',
|
||||
'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.',
|
||||
|
||||
@@ -50,6 +51,7 @@ $lang = array_merge($lang, array(
|
||||
'GROUP_APPROVED' => 'Approved members',
|
||||
'GROUP_AVATAR' => 'Group avatar',
|
||||
'GROUP_AVATAR_EXPLAIN' => 'This image will be displayed in the Group Control Panel.',
|
||||
'GROUP_CATEGORY_NAME' => 'Category name',
|
||||
'GROUP_CLOSED' => 'Closed',
|
||||
'GROUP_COLOR' => 'Group colour',
|
||||
'GROUP_COLOR_EXPLAIN' => 'Defines the colour members’ usernames will appear in, leave blank for user default.',
|
||||
@@ -130,6 +132,7 @@ $lang = array_merge($lang, array(
|
||||
'SPECIAL_GROUPS' => 'Pre-defined groups',
|
||||
'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.',
|
||||
|
||||
'TEAMPAGE' => 'Teampage',
|
||||
'TEAMPAGE_DISP_ALL' => 'All memberships',
|
||||
'TEAMPAGE_DISP_DEFAULT' => 'User’s default group only',
|
||||
'TEAMPAGE_DISP_FIRST' => 'First membership only',
|
||||
|
Reference in New Issue
Block a user