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:
authorMorris Jobke <hey@morrisjobke.de>2017-09-12 10:49:21 +0300
committerGitHub <noreply@github.com>2017-09-12 10:49:21 +0300
commit8b782e62f4e6fb5c867aa7a030616be329b01170 (patch)
tree3461007222b8d6e93f4cbfc4ed8e98d5be9ca229 /lib
parent2f71d0bc493829cc9567c53459c6c3a953a3954d (diff)
parent872ae5c7c1c51ff15c613a705a48691352e2c70b (diff)
Merge pull request #62 from nextcloud/l10n
Fix some wordings
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>');
}
/**