From 03c80067c6061cd6f7484aeb9f953ffad59b8fad Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 12 Feb 2012 15:10:08 +0000 Subject: [PATCH] Fixed #17451 -- Mentioned the new JavaScript lexer in the release notes. Refs #7704. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17515 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/releases/1.4.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt index e0bef0b56e..76e67306aa 100644 --- a/docs/releases/1.4.txt +++ b/docs/releases/1.4.txt @@ -524,6 +524,11 @@ Django 1.4 also includes several smaller improvements worth noting: documentation about :ref:`the 403 (HTTP Forbidden) view` for more information. +* The :djadmin:`makemessages` command uses a new and more accurate lexer, + `JsLex`_, for extracting translatable strings from JavaScript files. + +.. _JsLex: https://bitbucket.org/ned/jslex + * The :ttag:`trans` template tag now takes an optional ``as`` argument to be able to retrieve a translation string without displaying it but setting a template context variable instead.