#5086 Fix web interface ngettext

This commit is contained in:
Mitchell Livingston 2012-10-10 03:03:32 +00:00
parent 792215c5e9
commit 40a7634c78
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ Transmission.fmt = (function()
countString: function(msgid, msgid_plural, n)
{
return [ n.toStringWithCommas(), ngettext(msgid,msgid_plural,n) ].join(' ');
return [ n.toStringWithCommas(), this.ngettext(msgid,msgid_plural,n) ].join(' ');
},
peerStatus: function( flagStr )