aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-10-18 17:18:14 +0200
committerJoas Schilling <coding@schilljs.com>2016-10-18 17:18:14 +0200
commitb112493d1aa5a728ca0e65862f92159abd8395cb (patch)
treec357dd9d206a03db86d4a076a9679866f767fb39
parent6375790263c5fadc72e48c9486b06b28d9e805cb (diff)
downloadnextcloud-server-b112493d1aa5a728ca0e65862f92159abd8395cb.tar.gz
nextcloud-server-b112493d1aa5a728ca0e65862f92159abd8395cb.zip
Adjust wording to make the separation between sharing and files clearer
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--apps/files/lib/Activity.php2
-rw-r--r--apps/files_sharing/lib/Activity.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/lib/Activity.php b/apps/files/lib/Activity.php
index 5fc59f119e1..25146456b4c 100644
--- a/apps/files/lib/Activity.php
+++ b/apps/files/lib/Activity.php
@@ -340,7 +340,7 @@ class Activity implements IExtension {
self::FILTER_FILES => [
'id' => self::FILTER_FILES,
'icon' => 'icon-files-dark',
- 'name' => (string) $this->l->t('Files'),
+ 'name' => (string) $this->l->t('File changes'),
'url' => $this->URLGenerator->linkToRoute('activity.Activities.showList', ['filter' => self::FILTER_FILES]),
],
],
diff --git a/apps/files_sharing/lib/Activity.php b/apps/files_sharing/lib/Activity.php
index 4d57cc8c7b2..f0d4ca39047 100644
--- a/apps/files_sharing/lib/Activity.php
+++ b/apps/files_sharing/lib/Activity.php
@@ -430,7 +430,7 @@ class Activity implements IExtension {
self::FILTER_SHARES => [
'id' => self::FILTER_SHARES,
'icon' => 'icon-share',
- 'name' => (string) $l->t('Shares'),
+ 'name' => (string) $l->t('File shares'),
'url' => $this->URLGenerator->linkToRoute('activity.Activities.showList', ['filter' => self::FILTER_SHARES]),
],
],