@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.

Clean up some Fund language

Summary: Ref T12685. Cleans up various Fund language nits.

Test Plan: Read carefully.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12685

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

+4 -3
+1
src/applications/fund/query/FundBackerSearchEngine.php
··· 126 126 } 127 127 128 128 $table = id(new AphrontTableView($rows)) 129 + ->setNoDataString(pht('No backers found.')) 129 130 ->setHeaders( 130 131 array( 131 132 pht('Initiative'),
+1 -1
src/applications/fund/xaction/FundInitiativeNameTransaction.php
··· 37 37 $this->renderObject()); 38 38 } else { 39 39 return pht( 40 - '%s renamed %s initiative from %s to %s.', 40 + '%s renamed %s from %s to %s.', 41 41 $this->renderAuthor(), 42 42 $this->renderObject(), 43 43 $this->renderOldValue(),
+2 -2
src/applications/fund/xaction/FundInitiativeStatusTransaction.php
··· 28 28 public function getTitleForFeed() { 29 29 if ($this->getNewValue() == FundInitiative::STATUS_CLOSED) { 30 30 return pht( 31 - '%s closed the initiative %s.', 31 + '%s closed %s.', 32 32 $this->renderAuthor(), 33 33 $this->renderObject()); 34 34 } else { 35 35 return pht( 36 - '%s reopened the initiative %s.', 36 + '%s reopened %s.', 37 37 $this->renderAuthor(), 38 38 $this->renderObject()); 39 39 }