I think this may be that the previous format worked but wasn't really supported.
The 1.2 documentation on the blocktrans tag<https://docs.djangoproject.com/en/1.2/topics/i18n/internationalization/#blocktrans-template-tag>says: > Designate and bind a counter value with the name count [...] A more complex example: > {% blocktrans with article.price as amount count i.length as years %} Your "working in 1.3" example isn't correct -- the 'and' is superfluous (in fact, I'm surprised it worked). Your "working in 1.2" example should only be binding a single value with count, as shown in the 1.2 documentation. So it sounds like this is a case of things working which probably shouldn't have to begin with... -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/sq_F6ruqfksJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

