Page MenuHomePhabricator

D15998.diff
No OneTemporary

D15998.diff

diff --git a/src/applications/audit/application/PhabricatorAuditApplication.php b/src/applications/audit/application/PhabricatorAuditApplication.php
--- a/src/applications/audit/application/PhabricatorAuditApplication.php
+++ b/src/applications/audit/application/PhabricatorAuditApplication.php
@@ -60,7 +60,7 @@
$count = count($commits);
if ($count >= $limit) {
- $count_str = pht('%s+ Problem Commit(s)', new PhutilNumber($limit - 1));
+ $count_str = pht('%s+ Problem Commits', new PhutilNumber($limit - 1));
} else {
$count_str = pht('%s Problem Commit(s)', new PhutilNumber($count));
}
@@ -80,9 +80,13 @@
$count = count($commits);
if ($count >= $limit) {
- $count_str = pht('%s+ Problem Commit(s)', new PhutilNumber($limit - 1));
+ $count_str = pht(
+ '%s+ Commits Awaiting Audit',
+ new PhutilNumber($limit - 1));
} else {
- $count_str = pht('%s Problem Commit(s)', new PhutilNumber($count));
+ $count_str = pht(
+ '%s Commit(s) Awaiting Audit',
+ new PhutilNumber($count));
}
$type = PhabricatorApplicationStatusView::TYPE_WARNING;

File Metadata

Mime Type
text/plain
Expires
Mon, Oct 21, 8:30 AM (4 w, 20 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6738694
Default Alt Text
D15998.diff (1 KB)

Event Timeline