I'm only just getting started with Django internationalization, but I think you're misunderstanding how the {% blocktrans %}
tag handles placeholders.
The point of blocktrans
is to allow the text around the placeholders to be translated. It won't translate anything inside {{...}}
.
If you look at the generated .po
file, you'll see that the following template code:
{% blocktrans %}This is my variable: {{variable}}{% endblocktrans %}
Will get converted into something like the following:
msgid:"This is my variable: %s"
I don't think you can translate a variable within a blocktrans tag. You can probably do constant strings with {% blocktrans with _("string") as x %}{{x}}{% endblocktrans %}
but I can't think why you'd want to.
You'll have to do what you want in your view or model code I think.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…