2013-05-25 41 views

回答

14

這在他們的具體段落的末尾解釋:

{% trans "May" context "month name" %} 

https://docs.djangoproject.com/en/dev/topics/i18n/translation/#trans-template-tag

{% trans %}還支持使用上下文關鍵字的上下文標記

https://docs.djangoproject.com/en/dev/topics/i18n/translation/#blocktrans-template-tag

{% blocktrans %}還支持使用上下文關鍵字內容的標記:

{% blocktrans with name=user.username context "greeting" %}Hi {{ name }}{% endblocktrans %} 
2
{% blocktrans context "month name" %}May{% endblocktrans %}