Browse Source

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

Adjust wording to make the separation between sharing and files more clear
pull/1795/head
Joas Schilling 9 years ago
committed by GitHub
parent
commit
5e48ce98c7
  1. 2
      apps/files/lib/Activity.php
  2. 2
      apps/files_sharing/lib/Activity.php

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

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

Loading…
Cancel
Save