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:
commit
5e48ce98c7
2 changed files with 2 additions and 2 deletions
|
@ -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]),
|
||||
],
|
||||
],
|
||||
|
|
|
@ -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]),
|
||||
],
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue