Changes between Initial Version and Version 1 of Ticket #21347
- Timestamp:
- Oct 29, 2013, 3:18:53 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21347
- Property Easy pickings set
- Property Triage Stage Unreviewed → Accepted
-
Ticket #21347 – Description
initial v1 1 1 django/views/i18n.py includes the following function: 2 2 {{{ 3 3 function ngettext(singular, plural, count) { 4 4 value = catalog[singular]; … … 9 9 } 10 10 } 11 11 }}} 12 12 The "var" keyword is missing in line: 13 13