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

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--appinfo/info.xml5
-rw-r--r--lib/Settings/AdminSection.php2
3 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index 73a68f5..01e9e3f 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Server Info
+# Monitoring
This apps provides useful server information, such as CPU load, RAM usage,
disk usage, number of users, etc.
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 11ac59d..7ca8347 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -1,10 +1,11 @@
<?xml version="1.0"?>
<info>
<id>serverinfo</id>
- <name>Server info</name>
+ <name>Monitoring</name>
<description>Provider useful server information</description>
<licence>AGPL</licence>
- <author>Bjoern Schiessle, Ivan Sein Santiago</author>
+ <author>Bjoern Schiessle</author>
+ <author>Ivan Sein Santiago</author>
<version>1.2.0</version>
<namespace>ServerInfo</namespace>
<category>other</category>
diff --git a/lib/Settings/AdminSection.php b/lib/Settings/AdminSection.php
index eb9abea..26e793b 100644
--- a/lib/Settings/AdminSection.php
+++ b/lib/Settings/AdminSection.php
@@ -51,7 +51,7 @@ class AdminSection implements ISection {
* @return string
*/
public function getName() {
- return $this->l->t('Server info');
+ return $this->l->t('Monitoring');
}
/**