Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14065560
D8218.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
D8218.diff
View Options
Index: src/applications/feed/story/PhabricatorFeedStoryDifferential.php
===================================================================
--- src/applications/feed/story/PhabricatorFeedStoryDifferential.php
+++ src/applications/feed/story/PhabricatorFeedStoryDifferential.php
@@ -117,6 +117,14 @@
$one_line = pht('%s reopened revision %s',
$actor_link, $revision_link);
break;
+ case DifferentialTransaction::TYPE_INLINE:
+ $one_line = pht('%s added inline comments to %s',
+ $actor_link, $revision_link);
+ break;
+ default:
+ $one_line = pht('%s edited %s',
+ $actor_link, $revision_link);
+ break;
}
return $one_line;
@@ -200,6 +208,14 @@
$one_line = pht('%s reopened revision %s %s',
$author_name, $revision_title, $revision_uri);
break;
+ case DifferentialTransaction::TYPE_INLINE:
+ $one_line = pht('%s added inline comments to %s %s',
+ $author_name, $revision_title, $revision_uri);
+ break;
+ default:
+ $one_line = pht('%s edited %s %s',
+ $author_name, $revision_title, $revision_uri);
+ break;
}
return $one_line;
@@ -308,6 +324,14 @@
$title = pht('%s reopened revision %s',
$author_name, $revision_name);
break;
+ case DifferentialTransaction::TYPE_INLINE:
+ $title = pht('%s added inline comments to %s',
+ $author_name, $revision_name);
+ break;
+ default:
+ $title = pht('%s edited revision %s',
+ $author_name, $revision_name);
+ break;
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Nov 20, 5:09 AM (41 m, 27 s)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6770525
Default Alt Text
D8218.diff (1 KB)
Attached To
Mode
D8218: Add some missing text for Differential inline transactions
Attached
Detach File
Event Timeline
Log In to Comment