summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorSebastian Bolt <sebastian.bolt@gmx.de>2014-10-22 22:08:55 +0200
committerSebastian Bolt <sebastian.bolt@gmx.de>2014-10-22 22:08:55 +0200
commit52684c86e593e169619d2574c55d285e050eea7b (patch)
tree014a2be699c44275c978e88e89b043f9a73b4246 /settings/templates
parente9ec45ddd1c965523f3e232a9cb0ad438750ddec (diff)
downloadnextcloud-server-52684c86e593e169619d2574c55d285e050eea7b.tar.gz
nextcloud-server-52684c86e593e169619d2574c55d285e050eea7b.zip
"Group admin" default label (issue #7706)
Changed the column header to "Group Admin for" and the default value of the multiselect box to "no group" if user is not a groupadmin for any group.
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/users/part.userlist.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/users/part.userlist.php b/settings/templates/users/part.userlist.php
index 25b17275858..964aef600a2 100644
--- a/settings/templates/users/part.userlist.php
+++ b/settings/templates/users/part.userlist.php
@@ -9,7 +9,7 @@
<th id="headerPassword"><?php p($l->t( 'Password' )); ?></th>
<th id="headerGroups"><?php p($l->t( 'Groups' )); ?></th>
<?php if(is_array($_['subadmins']) || $_['subadmins']): ?>
- <th id="headerSubAdmins"><?php p($l->t('Group Admin')); ?></th>
+ <th id="headerSubAdmins"><?php p($l->t('Group Admin for')); ?></th>
<?php endif;?>
<th id="headerQuota"><?php p($l->t('Quota')); ?></th>
<th id="headerStorageLocation"><?php p($l->t('Storage Location')); ?></th>
@@ -38,7 +38,7 @@
class="groupsselect"
data-username="<?php p($user['name']) ;?>"
data-user-groups="<?php p(json_encode($user['groups'])) ;?>"
- data-placeholder="groups" title="<?php p($l->t('Groups'))?>"
+ data-placeholder="groups" title="<?php p($l->t('no group'))?>"
multiple="multiple">
<?php foreach($_["adminGroup"] as $adminGroup): ?>
<option value="<?php p($adminGroup['name']);?>"><?php p($adminGroup['name']); ?></option>
@@ -54,7 +54,7 @@
class="subadminsselect"
data-username="<?php p($user['name']) ;?>"
data-subadmin="<?php p(json_encode($user['subadmin']));?>"
- data-placeholder="subadmins" title="<?php p($l->t('Group Admin'))?>"
+ data-placeholder="subadmins" title="<?php p($l->t('no group'))?>"
multiple="multiple">
<?php foreach($_["subadmingroups"] as $group): ?>
<option value="<?php p($group);?>"><?php p($group);?></option>