diff options
author | Joas Schilling <coding@schilljs.com> | 2021-10-06 11:53:00 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-10-06 19:13:16 +0200 |
commit | 0dae8805c22371892cd2d975a675115c333ca7cc (patch) | |
tree | 469ac8a63f19d95897ddb09964ef59c709ce4314 /apps/settings/lib | |
parent | 5fecbc9074b70ac185d367fcd1019168bc538d4b (diff) | |
download | nextcloud-server-0dae8805c22371892cd2d975a675115c333ca7cc.tar.gz nextcloud-server-0dae8805c22371892cd2d975a675115c333ca7cc.zip |
Improve icon and section title of "Admin privileges"
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/settings/lib')
-rw-r--r-- | apps/settings/lib/Sections/Admin/Delegation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/lib/Sections/Admin/Delegation.php b/apps/settings/lib/Sections/Admin/Delegation.php index 362fd01af8b..e1fc6ddf52c 100644 --- a/apps/settings/lib/Sections/Admin/Delegation.php +++ b/apps/settings/lib/Sections/Admin/Delegation.php @@ -55,7 +55,7 @@ class Delegation implements IIconSection { * @return string */ public function getName() { - return $this->l->t('Admin right privilege'); + return $this->l->t('Admin privileges'); } /** @@ -71,6 +71,6 @@ class Delegation implements IIconSection { * @return string */ public function getIcon() { - return $this->url->imagePath('core', 'places/contacts.svg'); + return $this->url->imagePath('core', 'actions/user-admin.svg'); } } |