Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13983763
D15998.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D15998.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D15998: Correct tooltip label for open audit count
Attached
Detach File
Event Timeline
Log In to Comment