mirror of https://github.com/django/django.git
[1.6.x] Fixed #21347 -- Added missing JS variable declaration.
Thanks szymon.barglowski at gmail.com for the report.
Backport of 0b1d425a41
from master
This commit is contained in:
parent
d774cb219c
commit
5217d01b77
|
@ -98,7 +98,7 @@ js_catalog_template = r"""
|
|||
};
|
||||
|
||||
django.ngettext = function (singular, plural, count) {
|
||||
value = django.catalog[singular];
|
||||
var value = django.catalog[singular];
|
||||
if (typeof(value) == 'undefined') {
|
||||
return (count == 1) ? singular : plural;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue