﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21347	JS variable should be local but is global	szymon.barglowski@…	nobody	"django/views/i18n.py includes the following function:
{{{
function ngettext(singular, plural, count) {
  value = catalog[singular];
  if (typeof(value) == 'undefined') {
    return (count == 1) ? singular : plural;
  } else {
    return value[pluralidx(count)];
  }
}
}}}
The ""var"" keyword is missing in line:

value = catalog[singular];"	Bug	closed	Internationalization	1.5	Normal	fixed	JavaScript		Accepted	0	0	0	0	1	0
