diff options
author | Marius Blüm <marius@lineone.io> | 2017-04-29 17:13:21 +0200 |
---|---|---|
committer | Marius Blüm <marius@lineone.io> | 2017-04-29 17:13:21 +0200 |
commit | f26764c790020f0c4b508c368224e8531e929a1d (patch) | |
tree | d3a2a720e9a152f7cfe740a7bade806aff979e4f /lib | |
parent | fabaf09d4fa3503d3b8da50fb3bec814d6fd29ac (diff) | |
download | nextcloud-server-f26764c790020f0c4b508c368224e8531e929a1d.tar.gz nextcloud-server-f26764c790020f0c4b508c368224e8531e929a1d.zip |
Rename “Server settings” to “Basic settings”
* fixes #4587
Signed-off-by: Marius Blüm <marius@lineone.io>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Settings/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index 080b697b238..d40dfd1e417 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -271,7 +271,7 @@ class Manager implements IManager { public function getAdminSections() { // built-in sections $sections = [ - 0 => [new Section('server', $this->l->t('Server settings'), 0, $this->url->imagePath('settings', 'admin.svg'))], + 0 => [new Section('server', $this->l->t('Basic settings'), 0, $this->url->imagePath('settings', 'admin.svg'))], 5 => [new Section('sharing', $this->l->t('Sharing'), 0, $this->url->imagePath('core', 'actions/share.svg'))], 10 => [new Section('security', $this->l->t('Security'), 0, $this->url->imagePath('core', 'actions/password.svg'))], 45 => [new Section('encryption', $this->l->t('Encryption'), 0, $this->url->imagePath('core', 'actions/password.svg'))], |