]> source.dussan.org Git - nextcloud-server.git/commitdiff
Rename “Server settings” to “Basic settings” 4603/head
authorMarius Blüm <marius@lineone.io>
Sat, 29 Apr 2017 15:13:21 +0000 (17:13 +0200)
committerMarius Blüm <marius@lineone.io>
Sat, 29 Apr 2017 15:13:21 +0000 (17:13 +0200)
* fixes #4587

Signed-off-by: Marius Blüm <marius@lineone.io>
lib/private/Settings/Manager.php
tests/lib/Settings/ManagerTest.php

index 080b697b238e18549fd37a294a0a86e5a4a1ad06..d40dfd1e417c02834664851dcdb1fda31b7532a4 100644 (file)
@@ -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'))],
index 497a0df9f4e976d3340455f6db0a94cadda491b2..07f7e71feca5508611141cffefe43dda733b0597 100644 (file)
@@ -157,7 +157,7 @@ class ManagerTest extends TestCase {
                        ]);
 
                $this->assertEquals([
-                       0 => [new Section('server', 'Server settings', 0, '1')],
+                       0 => [new Section('server', 'Basic settings', 0, '1')],
                        5 => [new Section('sharing', 'Sharing', 0, '2')],
                        10 => [new Section('security', 'Security', 0, '3')],
                        45 => [new Section('encryption', 'Encryption', 0, '3')],
@@ -189,7 +189,7 @@ class ManagerTest extends TestCase {
                        ]);
 
                $this->assertEquals([
-                       0 => [new Section('server', 'Server settings', 0, '1')],
+                       0 => [new Section('server', 'Basic settings', 0, '1')],
                        5 => [new Section('sharing', 'Sharing', 0, '2')],
                        10 => [new Section('security', 'Security', 0, '3')],
                        45 => [new Section('encryption', 'Encryption', 0, '3')],