mirror of
https://github.com/transmission/transmission
synced 2025-02-15 19:04:45 +00:00
#5086 Fix web interface ngettext
This commit is contained in:
parent
792215c5e9
commit
40a7634c78
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ Transmission.fmt = (function()
|
||||||
|
|
||||||
countString: function(msgid, msgid_plural, n)
|
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 )
|
peerStatus: function( flagStr )
|
||||||
|
|
Loading…
Reference in a new issue