@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Consistently refer to 'Projects' as 'Tags'

Summary:
In calendar, dashboard, diffusion, diviner, feed, fund,
maniphest, pholio, ponder, and slowvote use the term 'tags' if possible.

This intenctionally skips diffusion, differential, and the projects application itself.

Ref T10326 Ref T10349

Test Plan: inspection on a running, locally modified, system

Reviewers: avivey, epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Maniphest Tasks: T10835, T10326, T10349

Differential Revision: https://secure.phabricator.com/D15753

authored by

Eitan Adler and committed by
eadler
c9daa2b0 c30fe65e

+12 -12
+1 -1
src/applications/calendar/controller/PhabricatorCalendarEventEditController.php
··· 459 459 } 460 460 461 461 $projects = id(new AphrontFormTokenizerControl()) 462 - ->setLabel(pht('Projects')) 462 + ->setLabel(pht('Tags')) 463 463 ->setName('projects') 464 464 ->setValue($projects) 465 465 ->setUser($viewer)
+1 -1
src/applications/dashboard/controller/PhabricatorDashboardEditController.php
··· 161 161 162 162 $form->appendControl( 163 163 id(new AphrontFormTokenizerControl()) 164 - ->setLabel(pht('Projects')) 164 + ->setLabel(pht('Tags')) 165 165 ->setName('projects') 166 166 ->setValue($v_projects) 167 167 ->setDatasource(new PhabricatorProjectDatasource()));
+1 -1
src/applications/dashboard/controller/PhabricatorDashboardPanelEditController.php
··· 240 240 241 241 $form->appendControl( 242 242 id(new AphrontFormTokenizerControl()) 243 - ->setLabel(pht('Projects')) 243 + ->setLabel(pht('Tags')) 244 244 ->setName('projects') 245 245 ->setValue($v_projects) 246 246 ->setDatasource(new PhabricatorProjectDatasource()));
+1 -1
src/applications/differential/query/DifferentialRevisionSearchEngine.php
··· 179 179 ->setValue($repository_phids)) 180 180 ->appendControl( 181 181 id(new AphrontFormTokenizerControl()) 182 - ->setLabel(pht('Projects')) 182 + ->setLabel(pht('Tags')) 183 183 ->setName('projects') 184 184 ->setDatasource(new PhabricatorProjectLogicalDatasource()) 185 185 ->setValue($projects))
+1 -1
src/applications/diviner/controller/DivinerBookEditController.php
··· 75 75 id(new AphrontFormTokenizerControl()) 76 76 ->setDatasource(new PhabricatorProjectDatasource()) 77 77 ->setName('projectPHIDs') 78 - ->setLabel(pht('Projects')) 78 + ->setLabel(pht('Tags')) 79 79 ->setValue($book->getProjectPHIDs())) 80 80 ->appendControl( 81 81 id(new AphrontFormTokenizerControl())
+1 -1
src/applications/feed/query/PhabricatorFeedSearchEngine.php
··· 102 102 ); 103 103 104 104 if ($this->requireViewer()->isLoggedIn()) { 105 - $names['projects'] = pht('Projects'); 105 + $names['projects'] = pht('Tags'); 106 106 } 107 107 108 108 return $names;
+1 -1
src/applications/fund/controller/FundInitiativeEditController.php
··· 201 201 ->setValue($v_risk)) 202 202 ->appendControl( 203 203 id(new AphrontFormTokenizerControl()) 204 - ->setLabel(pht('Projects')) 204 + ->setLabel(pht('Tags')) 205 205 ->setName('projects') 206 206 ->setValue($v_projects) 207 207 ->setDatasource(new PhabricatorProjectDatasource()))
+1 -1
src/applications/maniphest/export/ManiphestExcelDefaultFormat.php
··· 58 58 pht('Date Created'), 59 59 pht('Date Updated'), 60 60 pht('Title'), 61 - pht('Projects'), 61 + pht('Tags'), 62 62 pht('URI'), 63 63 pht('Description'), 64 64 );
+1 -1
src/applications/pholio/controller/PholioMockEditController.php
··· 316 316 ->setUser($viewer)) 317 317 ->appendControl( 318 318 id(new AphrontFormTokenizerControl()) 319 - ->setLabel(pht('Projects')) 319 + ->setLabel(pht('Tags')) 320 320 ->setName('projects') 321 321 ->setValue($v_projects) 322 322 ->setDatasource(new PhabricatorProjectDatasource()))
+1 -1
src/applications/phurl/controller/PhabricatorPhurlURLEditController.php
··· 165 165 ->setError($error_alias); 166 166 167 167 $projects = id(new AphrontFormTokenizerControl()) 168 - ->setLabel(pht('Projects')) 168 + ->setLabel(pht('Tags')) 169 169 ->setName('projects') 170 170 ->setValue($projects) 171 171 ->setUser($viewer)
+1 -1
src/applications/ponder/controller/PonderQuestionEditController.php
··· 156 156 157 157 $form->appendControl( 158 158 id(new AphrontFormTokenizerControl()) 159 - ->setLabel(pht('Projects')) 159 + ->setLabel(pht('Tags')) 160 160 ->setName('projects') 161 161 ->setValue($v_projects) 162 162 ->setDatasource(new PhabricatorProjectDatasource()));
+1 -1
src/applications/slowvote/controller/PhabricatorSlowvoteEditController.php
··· 152 152 ->setValue($v_description)) 153 153 ->appendControl( 154 154 id(new AphrontFormTokenizerControl()) 155 - ->setLabel(pht('Projects')) 155 + ->setLabel(pht('Tags')) 156 156 ->setName('projects') 157 157 ->setValue($v_projects) 158 158 ->setDatasource(new PhabricatorProjectDatasource()));