consistently use title case when formatting counts

This commit is contained in:
rolux 2013-07-18 08:14:14 +00:00
commit f8179ea48a
6 changed files with 10 additions and 11 deletions

View file

@ -922,9 +922,8 @@ pandora.ui.usersDialog = function() {
function setTo() {
var recipients = getTo().length;
//fixme shoule be No not no from formatCount here
$mailForm.values({
to: Ox.formatCount(recipients, 'recipient')
to: Ox.formatCount(recipients, 'recipient').replace('no', 'No')
});
}