Favored lists in progress: 'foo, bar and baz'

This commit is contained in:
Brion Vibber 2011-03-17 13:51:55 -07:00
parent 6c236ab0ff
commit 58d39153c6
1 changed files with 18 additions and 4 deletions

View File

@ -361,12 +361,12 @@ class ThreadedNoticeListFavesItem extends NoticeListItem
$count = count($links);
if ($count == 1 && $you) {
// darn first person being different from third person!
$msg = _m('FAVELIST', 'You have favored this notice');
$msg = _m('FAVELIST', 'You have favored this notice.');
} else {
// if 'you' is the first item...
$msg = _m('FAVELIST', '%1$s has favored this notice', '%1$s have favored this notice', $count);
// if 'you' is the first item,
$msg = _m('FAVELIST', '%1$s has favored this notice.', '%1$s have favored this notice.', $count);
}
$out = sprintf($msg, implode(', ', $links));
$out = sprintf($msg, $this->magicList($links));
$this->out->elementStart('li', array('class' => 'notice-faves'));
$this->out->raw($out);
@ -376,4 +376,18 @@ class ThreadedNoticeListFavesItem extends NoticeListItem
return 0;
}
}
function magicList($items)
{
if (count($items) == 0) {
return '';
} else if (count($items) == 1) {
return $items[0];
} else {
$first = array_slice($items, 0, -1);
$last = array_slice($items, -1, 1);
// TRANS For building a list such as "You, bob, mary and 5 others have favored this notice".
return sprintf(_m('FAVELIST', '%1$s and %2$s'), implode(', ', $first), implode(', ', $last));
}
}
}