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

Summary: Fixes T7672. This had two `%d` conversions but only one parameter.

Test Plan: Adjusted limit to 0, viewed a merge, saw proper message.

Reviewers: chad, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T7672

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

+4 -2
+4 -2
src/applications/diffusion/controller/DiffusionCommitController.php
··· 900 900 $caption = new PHUIInfoView(); 901 901 $caption->setSeverity(PHUIInfoView::SEVERITY_NOTICE); 902 902 $caption->appendChild( 903 - pht('This commit merges more than %d changes. Only the first '. 904 - '%d are shown.', $limit)); 903 + pht( 904 + 'This commit merges a very large number of changes. Only the first '. 905 + '%s are shown.', 906 + new PhutilNumber($limit))); 905 907 } 906 908 907 909 $history_table = new DiffusionHistoryTableView();