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

Provide tailored strings for revision creation

Summary: See D17169. Ref T11114.

Test Plan: {F2333825}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11114

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

+8
+8
src/applications/differential/editor/DifferentialTransactionEditor.php
··· 18 18 return pht('Differential Revisions'); 19 19 } 20 20 21 + public function getCreateObjectTitle($author, $object) { 22 + return pht('%s created this revision.', $author); 23 + } 24 + 25 + public function getCreateObjectTitleForFeed($author, $object) { 26 + return pht('%s created %s.', $author, $object); 27 + } 28 + 21 29 public function getDiffUpdateTransaction(array $xactions) { 22 30 $type_update = DifferentialTransaction::TYPE_UPDATE; 23 31