diff --git a/plugins/libcalendaring/lib/libcalendaring_itip.php b/plugins/libcalendaring/lib/libcalendaring_itip.php index a9e612b4..ee40ff0d 100644 --- a/plugins/libcalendaring/lib/libcalendaring_itip.php +++ b/plugins/libcalendaring/lib/libcalendaring_itip.php @@ -297,7 +297,12 @@ class libcalendaring_itip foreach ($existing['attendees'] as $attendee) { if ($attendee['role'] != 'ORGANIZER' && strcasecmp($attendee['email'], $event['attendee']) == 0) { if (in_array($status, array('ACCEPTED','TENTATIVE','DECLINED','DELEGATED'))) { - $html = html::div('rsvp-status ' . strtolower($status), $this->gettext('attendee'.strtolower($status))); + $html = html::div('rsvp-status ' . strtolower($status), $this->gettext(array( + 'name' => 'attendee'.strtolower($status), + 'vars' => array( + 'delegatedto' => Q($attendee['delegated-to'] ?: '?'), + ) + ))); } $action = $attendee['status'] == $status ? '' : 'update'; $listed = true; diff --git a/plugins/libcalendaring/localization/en_US.inc b/plugins/libcalendaring/localization/en_US.inc index d381768b..4565cc16 100644 --- a/plugins/libcalendaring/localization/en_US.inc +++ b/plugins/libcalendaring/localization/en_US.inc @@ -60,7 +60,7 @@ $labels['youhavedelegated'] = 'You have delegated this invitation'; $labels['attendeeaccepted'] = 'Participant has accepted'; $labels['attendeetentative'] = 'Participant has tentatively accepted'; $labels['attendeedeclined'] = 'Participant has declined'; -$labels['attendeedelegated'] = 'Participant has delegated'; +$labels['attendeedelegated'] = 'Participant has delegated to $delegatedto'; $labels['notanattendee'] = 'You\'re not listed as an attendee of this object'; $labels['importtocalendar'] = 'Save to my calendar'; diff --git a/plugins/libcalendaring/skins/larry/libcal.css b/plugins/libcalendaring/skins/larry/libcal.css index e0bd5148..62d29479 100644 --- a/plugins/libcalendaring/skins/larry/libcal.css +++ b/plugins/libcalendaring/skins/larry/libcal.css @@ -60,7 +60,7 @@ span.edit-alarm-set { a.reply-comment-toggle { display: inline-block; margin-left: 1em; - color: #333; + color: #666; } .itip-reply-comment textarea {