﻿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
15674	Error using {% blocktrans %} with variable and  {% plural %}	anonymous	nobody	"I need to print a value of one variable, and the translation depends on another variable. I tried the following code:

{{{
{% blocktrans with all_count|num_delimiter as amount count all_count as years %}
    cost $ {{ amount }} per year.
{% plural %}
    cost $ {{ amount }} per {{ years }} years.
{% endblocktrans %}
}}}

It works. But I can't use only one variable:

{{{
{% blocktrans with all_count|num_delimiter as amount count all_count as years %}
    take $ {{ amount }} per year.
{% plural %}
    take $ {{ amount }} per some years.
{% endblocktrans %}
}}}

It displays the value of a '''amount''' variable, but does not translate text."		closed	Internationalization	dev		invalid	blocktrans, template, plural, i18n		Unreviewed	0	0	0	0	0	0
