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

Fix a translation

Summary: Fixes T9763.

Test Plan: Merged tasks, saw translations.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin

Maniphest Tasks: T9763

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

+4 -4
+2 -2
src/applications/maniphest/storage/ManiphestTransaction.php
··· 839 839 840 840 case self::TYPE_MERGED_FROM: 841 841 return pht( 842 - '%s merged %d task(s) %s into %s.', 842 + '%s merged %s task(s) %s into %s.', 843 843 $this->renderHandleLink($author_phid), 844 - count($new), 844 + phutil_count($new), 845 845 $this->renderHandleList($new), 846 846 $this->renderHandleLink($object_phid)); 847 847
+2 -2
src/infrastructure/internationalization/translation/PhabricatorUSEnglishTranslation.php
··· 178 178 ), 179 179 ), 180 180 181 - '%s merged %d task(s): %s.' => array( 181 + '%s merged %s task(s): %s.' => array( 182 182 array( 183 183 '%s merged a task: %3$s.', 184 184 '%s merged tasks: %3$s.', 185 185 ), 186 186 ), 187 187 188 - '%s merged %d task(s) %s into %s.' => array( 188 + '%s merged %s task(s) %s into %s.' => array( 189 189 array( 190 190 '%s merged %3$s into %4$s.', 191 191 '%s merged tasks %3$s into %4$s.',