mirror of
https://github.com/django/django.git
synced 2024-11-20 08:24:58 +00:00
17b329ae08
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14595 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
515 B
HTML
9 lines
515 B
HTML
{% load i18n %}
|
|
{% comment %}Translators: Django comment block for translators {% endcomment %}
|
|
{% trans "This literal should be included." %}
|
|
{% trans "This literal should also be included wrapped or not wrapped depending on the use of the --no-wrap option." %}
|
|
|
|
{# 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 %}
|