aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2016-08-13 00:06:10 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2016-08-13 00:06:10 +0200
commit7a2b96c7e65eaaf58e0ad77b91532df0a2b6da5d (patch)
treec0dfc6e5f170c6239f973240203aaa3d0735e7d4 /lib
parent90e58b7fb3aae0db4d5017a93e04e37387c4fb30 (diff)
downloadnextcloud-server-7a2b96c7e65eaaf58e0ad77b91532df0a2b6da5d.tar.gz
nextcloud-server-7a2b96c7e65eaaf58e0ad77b91532df0a2b6da5d.zip
change casing in section display names
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Settings/Manager.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php
index 7e22d0a3b8c..4b1b5befb21 100644
--- a/lib/private/Settings/Manager.php
+++ b/lib/private/Settings/Manager.php
@@ -260,13 +260,13 @@ class Manager implements IManager {
// built-in sections
$sections = [
- 0 => [new Section('server', $this->l->t('Server Settings'), 0)],
+ 0 => [new Section('server', $this->l->t('Server settings'), 0)],
5 => [new Section('sharing', $this->l->t('Sharing'), 0)],
15 => [new Section('collaboration', $this->l->t('Collaboration'), 0)],
45 => [new Section('encryption', $this->l->t('Encryption'), 0)],
90 => [new Section('logging', $this->l->t('Logging'), 0)],
- 98 => [new Section('additional', $this->l->t('Additional Settings'), 0)],
- 99 => [new Section('tips-tricks', $this->l->t('Tips & Tricks'), 0)],
+ 98 => [new Section('additional', $this->l->t('Additional settings'), 0)],
+ 99 => [new Section('tips-tricks', $this->l->t('Tips & tricks'), 0)],
];
$result = $query->execute();