Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15453643
D14719.id35596.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D14719.id35596.diff
View Options
diff --git a/src/infrastructure/internationalization/translation/PhabricatorUSEnglishTranslation.php b/src/infrastructure/internationalization/translation/PhabricatorUSEnglishTranslation.php
--- a/src/infrastructure/internationalization/translation/PhabricatorUSEnglishTranslation.php
+++ b/src/infrastructure/internationalization/translation/PhabricatorUSEnglishTranslation.php
@@ -810,11 +810,6 @@
'%d Users Need Approval',
),
- '%s older changes(s) are hidden.' => array(
- '%d older change is hidden.',
- '%d older changes are hidden.',
- ),
-
'%s, %s line(s)' => array(
array(
'%s, %s line',
diff --git a/src/view/phui/PHUITimelineView.php b/src/view/phui/PHUITimelineView.php
--- a/src/view/phui/PHUITimelineView.php
+++ b/src/view/phui/PHUITimelineView.php
@@ -91,6 +91,9 @@
$spacer = self::renderSpacer();
+ // Track why we're hiding older results.
+ $hide_reason = null;
+
$hide = array();
$show = array();
@@ -109,14 +112,35 @@
// by default. We may still need to paginate if there are a large number
// of events.
$more = (bool)$hide;
+
+ if ($more) {
+ $hide_reason = 'comment';
+ }
+
if ($this->getPager()) {
if ($this->getPager()->getHasMoreResults()) {
+ if (!$more) {
+ $hide_reason = 'limit';
+ }
$more = true;
}
}
$events = array();
if ($more && $this->getPager()) {
+ switch ($hide_reason) {
+ case 'comment':
+ $hide_help = pht(
+ 'Changes from before your most recent comment are hidden.');
+ break;
+ case 'limit':
+ default:
+ $hide_help = pht(
+ 'There are a very large number of changes, so older changes are '.
+ 'hidden.');
+ break;
+ }
+
$uri = $this->getPager()->getNextPageURI();
$uri->setQueryParam('quoteTargetID', $this->getQuoteTargetID());
$uri->setQueryParam('quoteRef', $this->getQuoteRef());
@@ -127,7 +151,7 @@
'class' => 'phui-timeline-older-transactions-are-hidden',
),
array(
- pht('Older changes are hidden. '),
+ $hide_help,
' ',
javelin_tag(
'a',
@@ -136,7 +160,7 @@
'mustcapture' => true,
'sigil' => 'show-older-link',
),
- pht('Show older changes.')),
+ pht('Show Older Changes')),
));
if ($show) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 30, 1:19 PM (5 d, 9 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7381812
Default Alt Text
D14719.id35596.diff (2 KB)
Attached To
Mode
D14719: Explain why older changes are hidden more clearly
Attached
Detach File
Event Timeline
Log In to Comment