Page MenuHomePhabricator

D8218.diff
No OneTemporary

D8218.diff

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

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)

Event Timeline