Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-10-19 15:35:01 +0300
committerJoas Schilling <coding@schilljs.com>2017-10-19 15:35:01 +0300
commit37e52e6009355bd395ff612019e5c53a851aac11 (patch)
tree289463b703b987037c497c3a7e071af833512d48 /lib/Settings
parente16950b53e244e6e83d91fc0ab35a4332006a168 (diff)
Fix naming of the admin section
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Settings')
-rw-r--r--lib/Settings/Admin/Section.php4
-rw-r--r--lib/Settings/Admin/StunServer.php2
-rw-r--r--lib/Settings/Admin/TurnServer.php2
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/Settings/Admin/Section.php b/lib/Settings/Admin/Section.php
index 139844c27..34f832f72 100644
--- a/lib/Settings/Admin/Section.php
+++ b/lib/Settings/Admin/Section.php
@@ -62,7 +62,7 @@ class Section implements IIconSection {
* @since 9.1
*/
public function getID() {
- return 'videocalls';
+ return 'talk';
}
/**
@@ -73,7 +73,7 @@ class Section implements IIconSection {
* @since 9.1
*/
public function getName() {
- return $this->l->t('Video calls');
+ return $this->l->t('Talk');
}
/**
diff --git a/lib/Settings/Admin/StunServer.php b/lib/Settings/Admin/StunServer.php
index 593c33eb2..4d78ff766 100644
--- a/lib/Settings/Admin/StunServer.php
+++ b/lib/Settings/Admin/StunServer.php
@@ -53,7 +53,7 @@ class StunServer implements ISettings {
* @return string the section ID, e.g. 'sharing'
*/
public function getSection() {
- return 'videocalls';
+ return 'talk';
}
/**
diff --git a/lib/Settings/Admin/TurnServer.php b/lib/Settings/Admin/TurnServer.php
index 1e0575656..a2f70765e 100644
--- a/lib/Settings/Admin/TurnServer.php
+++ b/lib/Settings/Admin/TurnServer.php
@@ -50,7 +50,7 @@ class TurnServer implements ISettings {
* @return string the section ID, e.g. 'sharing'
*/
public function getSection() {
- return 'videocalls';
+ return 'talk';
}
/**