Fixed #3088 -- Filter parameters are now translated in blocktrans. Thanks, permon
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6263 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5c3905cf48
commit
604504896c
|
@ -491,6 +491,8 @@ def templatize(src):
|
|||
elif g[0] == "'": g = g.strip("'")
|
||||
out.write(' gettext(%r) ' % g)
|
||||
elif bmatch:
|
||||
for fmatch in constant_re.findall(t.contents):
|
||||
out.write(' _(%s) ' % fmatch)
|
||||
intrans = True
|
||||
inplural = False
|
||||
singular = []
|
||||
|
|
Loading…
Reference in New Issue