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:
parent
42997e4102
commit
438143f3ed
1 changed files with 1 additions and 1 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue