'class' => 'notice-tally'
)
);
- // TRANS: Tally for number of times a notice was favored.
- // TRANS: %d is the number of times a notice was favored.
- $out->raw(sprintf(_m("favored once", "favored %d times", $tally->count), $tally->count));
+ $out->elementStart('span', array('class' => 'fave-tally-title'));
++ // TRANS: Label for tally for number of times a notice was favored.
+ $out->raw(sprintf(_m("Favored")));
+ $out->elementEnd('span');
+ $out->elementStart('span', array('class' => 'fave-tally'));
+ $out->raw($tally->count);
+ $out->elementEnd('span');
$out->elementEnd('div');
}
}