Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14044115
D13352.id32303.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
D13352.id32303.diff
View Options
diff --git a/src/applications/calendar/storage/PhabricatorCalendarEventTransaction.php b/src/applications/calendar/storage/PhabricatorCalendarEventTransaction.php
--- a/src/applications/calendar/storage/PhabricatorCalendarEventTransaction.php
+++ b/src/applications/calendar/storage/PhabricatorCalendarEventTransaction.php
@@ -254,8 +254,19 @@
}
return $text;
case self::TYPE_RECURRING:
+ $text = pht('%s has made this event recurring',
+ $this->renderHandleLink($author_phid));
+ return $text;
case self::TYPE_FREQUENCY:
+ $text = pht('%s has made this event repeat %s',
+ $this->renderHandleLink($author_phid),
+ $new);
+ return $text;
case self::TYPE_RECURRENCE_END_DATE:
+ $text = pht('%s has changed the end date of event to %s',
+ $this->renderHandleLink($author_phid),
+ $new);
+ return $text;
case self::TYPE_INSTANCE_OF_EVENT:
case self::TYPE_SEQUENCE_INDEX:
return pht('Recurring event has been updated');
@@ -438,8 +449,22 @@
}
return $text;
case self::TYPE_RECURRING:
+ $text = pht('%s added recurrence to %s',
+ $this->renderHandleLink($author_phid),
+ $this->renderHandleLink($object_phid));
+ return $text;
case self::TYPE_FREQUENCY:
+ $text = pht('%s changed the frequency of %s to %s',
+ $this->renderHandleLink($author_phid),
+ $this->renderHandleLink($object_phid),
+ $new);
+ return $text;
case self::TYPE_RECURRENCE_END_DATE:
+ $text = pht('%s changed the end date of %s to %s',
+ $this->renderHandleLink($author_phid),
+ $this->renderHandleLink($object_phid),
+ $new);
+ return $text;
case self::TYPE_INSTANCE_OF_EVENT:
case self::TYPE_SEQUENCE_INDEX:
return pht('Recurring event has been updated');
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Nov 13, 3:02 PM (10 h, 38 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6747893
Default Alt Text
D13352.id32303.diff (1 KB)
Attached To
Mode
D13352: Adds details to Calendar event feed titles
Attached
Detach File
Event Timeline
Log In to Comment