1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-24 16:52:39 +00:00

(trunk web) fix minor pluralization issues

This commit is contained in:
Jordan Lee 2011-11-13 16:51:05 +00:00
parent 42997e4102
commit 438143f3ed

View file

@ -270,7 +270,7 @@ Transmission.fmt = (function()
plural: function(i, word)
{
return [ i, ' ', word, (word==1?'':'s') ].join('');
return [ i.toStringWithCommas(), ' ', word, (i==1?'':'s') ].join('');
},
peerStatus: function( flagStr )