@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 some issues with Phabricator i18n string extraction

Summary: Ref T5267. Fix one minor bug (paths were not being resolved properly) and one minor string issue (missing `%d` in a string).

Test Plan: Extracted strings, got a cleaner result.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T5267

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

+2 -2
+1 -1
src/infrastructure/daemon/workers/storage/PhabricatorWorkerActiveTask.php
··· 156 156 if ($this->getFailureCount() > $maximum_failures) { 157 157 throw new PhabricatorWorkerPermanentFailureException( 158 158 pht( 159 - 'Task % has exceeded the maximum number of failures (%d).', 159 + 'Task %d has exceeded the maximum number of failures (%d).', 160 160 $this->getID(), 161 161 $maximum_failures)); 162 162 }
+1 -1
src/infrastructure/internationalization/management/PhabricatorInternationalizationManagementExtractWorkflow.php
··· 54 54 } 55 55 56 56 foreach ($libraries as $library) { 57 - $targets[] = Filesystem::resolvePath(dirname($library)).'/'; 57 + $targets[] = Filesystem::resolvePath(dirname($path.'/'.$library)).'/'; 58 58 } 59 59 } 60 60