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

github.com/nextcloud/survey_client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-06-19 10:51:11 +0300
committerJoas Schilling <coding@schilljs.com>2017-06-19 10:51:11 +0300
commit872ae5c7c1c51ff15c613a705a48691352e2c70b (patch)
treeb76c2edc9d14824bc38dad4c97f0aa485e0681c0 /lib
parent38ccdfbe1d6a15ce0b89b0483551525d36f1d432 (diff)
Fix some wordings
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Categories/Apps.php2
-rw-r--r--lib/Categories/Server.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Categories/Apps.php b/lib/Categories/Apps.php
index b5b3333..84f6dc3 100644
--- a/lib/Categories/Apps.php
+++ b/lib/Categories/Apps.php
@@ -58,7 +58,7 @@ class Apps implements ICategory {
* @return string
*/
public function getDisplayName() {
- return (string) $this->l->t('App list <em>(for each app: name, version, is enabled?)</em>');
+ return (string) $this->l->t('App list <em>(for each app: name, version, enabled status)</em>');
}
/**
diff --git a/lib/Categories/Server.php b/lib/Categories/Server.php
index 2198a7e..9dcf208 100644
--- a/lib/Categories/Server.php
+++ b/lib/Categories/Server.php
@@ -57,7 +57,7 @@ class Server implements ICategory {
* @return string
*/
public function getDisplayName() {
- return (string) $this->l->t('Server instance details <em>(version, memcache used, locking/previews/avatars enabled?)</em>');
+ return (string) $this->l->t('Server instance details <em>(version, memcache used, status of locking/previews/avatars)</em>');
}
/**