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

Merge pull request #334 from Naatan/master

Fixed maniphest transaction types were not translatable

+7 -7
+7 -7
src/applications/maniphest/constants/ManiphestTransactionType.php
··· 21 21 22 22 public static function getTransactionTypeMap() { 23 23 return array( 24 - self::TYPE_NONE => 'Comment', 25 - self::TYPE_STATUS => 'Close Task', 26 - self::TYPE_OWNER => 'Reassign / Claim', 27 - self::TYPE_CCS => 'Add CCs', 28 - self::TYPE_PRIORITY => 'Change Priority', 29 - self::TYPE_ATTACH => 'Upload File', 30 - self::TYPE_PROJECTS => 'Associate Projects', 24 + self::TYPE_NONE => pht('Comment'), 25 + self::TYPE_STATUS => pht('Close Task'), 26 + self::TYPE_OWNER => pht('Reassign / Claim'), 27 + self::TYPE_CCS => pht('Add CCs'), 28 + self::TYPE_PRIORITY => pht('Change Priority'), 29 + self::TYPE_ATTACH => pht('Upload File'), 30 + self::TYPE_PROJECTS => pht('Associate Projects'), 31 31 ); 32 32 } 33 33