_aggregator_items($count)Helper function for drupal_map_assoc.
$count Items count.
Plural-formatted "@count items"
modules/aggregator/aggregator.module, line 774
<?php
function _aggregator_items($count) {
return format_plural($count, '1 item', '@count items');
}
?>