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

Correct tooltip label for open audit count

Summary: Fixes T11071. This was a copy/paste error from D14638.

Test Plan: {F1669989}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11071

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

+7 -3
+7 -3
src/applications/audit/application/PhabricatorAuditApplication.php
··· 60 60 61 61 $count = count($commits); 62 62 if ($count >= $limit) { 63 - $count_str = pht('%s+ Problem Commit(s)', new PhutilNumber($limit - 1)); 63 + $count_str = pht('%s+ Problem Commits', new PhutilNumber($limit - 1)); 64 64 } else { 65 65 $count_str = pht('%s Problem Commit(s)', new PhutilNumber($count)); 66 66 } ··· 80 80 81 81 $count = count($commits); 82 82 if ($count >= $limit) { 83 - $count_str = pht('%s+ Problem Commit(s)', new PhutilNumber($limit - 1)); 83 + $count_str = pht( 84 + '%s+ Commits Awaiting Audit', 85 + new PhutilNumber($limit - 1)); 84 86 } else { 85 - $count_str = pht('%s Problem Commit(s)', new PhutilNumber($count)); 87 + $count_str = pht( 88 + '%s Commit(s) Awaiting Audit', 89 + new PhutilNumber($count)); 86 90 } 87 91 88 92 $type = PhabricatorApplicationStatusView::TYPE_WARNING;