﻿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
16072	Using multiple expressions inside a blocktrans tag not working as documented	ivan.mincik@…	nobody	"According 1.3 docs, using multiple expressions inside a blocktrans tag should be done using following statement:

{{{
{% blocktrans with book_t=book|title and author_t=author|title %}
This is {{ book_t }} by {{ author_t }}
{% endblocktrans %}
}}}

but it is not working.

This works in my case:
{{{
{% blocktrans with book|title as book_t and author|title as author_t %}
This is {{ book_t }} by {{ author_t }}
{% endblocktrans %}
}}}"	Bug	closed	Documentation	1.3	Normal	fixed			Accepted	0	0	0	0	0	0
