summaryrefslogtreecommitdiffstats
path: root/apps
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 /apps
parent90e58b7fb3aae0db4d5017a93e04e37387c4fb30 (diff)
downloadnextcloud-server-7a2b96c7e65eaaf58e0ad77b91532df0a2b6da5d.tar.gz
nextcloud-server-7a2b96c7e65eaaf58e0ad77b91532df0a2b6da5d.zip
change casing in section display names
Diffstat (limited to 'apps')
-rw-r--r--apps/files/lib/Settings/Section.php2
-rw-r--r--apps/user_ldap/lib/Settings/Section.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/lib/Settings/Section.php b/apps/files/lib/Settings/Section.php
index 2323870cf97..0a1ddcab6fd 100644
--- a/apps/files/lib/Settings/Section.php
+++ b/apps/files/lib/Settings/Section.php
@@ -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');
}
/**
diff --git a/apps/user_ldap/lib/Settings/Section.php b/apps/user_ldap/lib/Settings/Section.php
index a10bd7cbb93..82d8d0c84fa 100644
--- a/apps/user_ldap/lib/Settings/Section.php
+++ b/apps/user_ldap/lib/Settings/Section.php
@@ -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');
}
/**