change casing in section display names

This commit is contained in:
Arthur Schiwon 2016-08-13 00:06:10 +02:00 committed by Lukas Reschke
parent ef4452e3c3
commit d056f575c9
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
3 changed files with 5 additions and 5 deletions

View 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');
}
/**

View 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');
}
/**

View 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();