]> source.dussan.org Git - nextcloud-server.git/commitdiff
change casing in section display names
authorArthur Schiwon <blizzz@arthur-schiwon.de>
Fri, 12 Aug 2016 22:06:10 +0000 (00:06 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Tue, 16 Aug 2016 19:10:04 +0000 (21:10 +0200)
apps/files/lib/Settings/Section.php
apps/user_ldap/lib/Settings/Section.php
lib/private/Settings/Manager.php

index 2323870cf9749d8ef5730e8935981de46e9f5fbf..0a1ddcab6fd4cd702c22b056e82ed779dfba2039 100644 (file)
@@ -51,7 +51,7 @@ class Section implements ISection {
         * @return string
         */
        public function getName() {
-               return $this->l->t('Files & Storages');
+               return $this->l->t('Files & storages');
        }
 
        /**
index a10bd7cbb93f7b856c0feb91afd9684cb4e1609b..82d8d0c84fa800729f4997df7bf16c1f33779d5f 100644 (file)
@@ -51,7 +51,7 @@ class Section implements ISection {
         * @return string
         */
        public function getName() {
-               return $this->l->t('LDAP / AD Integration');
+               return $this->l->t('LDAP / AD integration');
        }
 
        /**
index 7e22d0a3b8cc2c3f55da5889374c6091be508e9d..4b1b5befb2167c7c4866ed3a2abc1d7beae8283f 100644 (file)
@@ -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();