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

Display library name rather than root if possible

Summary:
Per D26606#42392

I somehow managed to accidentally clobber that diff when landing. I have no idea how I did that, but now we need another diff.

Test Plan: Run `bin/i18n extract`

Reviewers: O1 Blessed Committers, aklapper

Reviewed By: O1 Blessed Committers, aklapper

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26659

Pppery 25344426 aceebaa4

+2 -1
+2 -1
src/infrastructure/internationalization/management/PhabricatorInternationalizationManagementExtractWorkflow.php
··· 70 70 pht('EXTRACT'), 71 71 pht( 72 72 'Extracting "%s"...', 73 - Filesystem::readablePath($library))); 73 + phutil_get_library_name_for_root($library) ?? 74 + Filesystem::readablePath($library))); 74 75 75 76 $this->extractLibrary($library); 76 77 }