diff options
author | Joas Schilling <coding@schilljs.com> | 2016-10-19 09:45:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-19 09:45:30 +0200 |
commit | 5e48ce98c70fa511ea2c1caeb332594912c9d96a (patch) | |
tree | 214f64d98996be21724248c493dcefbc80138d53 /apps | |
parent | 46406f517aa7c07f148d69d69a5f61306d140ec3 (diff) | |
parent | b112493d1aa5a728ca0e65862f92159abd8395cb (diff) | |
download | nextcloud-server-5e48ce98c70fa511ea2c1caeb332594912c9d96a.tar.gz nextcloud-server-5e48ce98c70fa511ea2c1caeb332594912c9d96a.zip |
Merge pull request #1784 from nextcloud/fix-activity-filter-names
Adjust wording to make the separation between sharing and files more clear
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/lib/Activity.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/lib/Activity.php | 2 |
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]), ], ], |