Merge pull request #1784 from nextcloud/fix-activity-filter-names

Adjust wording to make the separation between sharing and files more clear
This commit is contained in:
Joas Schilling 2016-10-19 09:45:30 +02:00 committed by GitHub
commit 5e48ce98c7
2 changed files with 2 additions and 2 deletions

View File

@ -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]),
],
],

View File

@ -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]),
],
],