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