Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update wording
Signed-off-by: Morris Jobke <[email protected]>
  • Loading branch information
MorrisJobke authored and rullzer committed Dec 11, 2017
commit c76c7a96fc31af6750bbd2614857abb5a67dc792
4 changes: 2 additions & 2 deletions apps/dav/lib/CalDAV/Activity/Provider/Calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ public function parse($language, IEvent $event, IEvent $previousEvent = null) {
$subject = $this->l->t('You updated calendar {calendar}');

} else if ($event->getSubject() === self::SUBJECT_PUBLISH . '_self') {
$subject = $this->l->t('You published calendar {calendar}');
$subject = $this->l->t('You shared calendar {calendar} as public link');
} else if ($event->getSubject() === self::SUBJECT_UNPUBLISH . '_self') {
$subject = $this->l->t('You unpublished calendar {calendar}');
$subject = $this->l->t('You removed public link for calendar {calendar}');

} else if ($event->getSubject() === self::SUBJECT_SHARE_USER) {
$subject = $this->l->t('{actor} shared calendar {calendar} with you');
Expand Down