2010-02-16 12:14:27 +00:00
|
|
|
{% load i18n %}
|
2010-11-17 15:37:33 +00:00
|
|
|
{% comment %}Translators: Django comment block for translators {% endcomment %}
|
2010-11-04 12:08:37 +00:00
|
|
|
{% trans "This literal should be included." %}
|
2010-11-04 14:06:24 +00:00
|
|
|
{% trans "This literal should also be included wrapped or not wrapped depending on the use of the --no-wrap option." %}
|
2010-11-17 15:37:33 +00:00
|
|
|
|
|
|
|
{# Translators: Django template comment for translators #}
|
|
|
|
<p>{% blocktrans %}I think that 100% is more that 50% of anything.{% endblocktrans %}</p>
|
|
|
|
{% blocktrans with 'txt' as obj %}I think that 100% is more that 50% of {{ obj }}.{% endblocktrans %}
|