123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {% load i18n %}
- {% comment %}Translators: Django comment block for translators
- string's meaning unveiled
- {% 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." %}
- {% comment %}Some random comment
- Some random comment
- Translators: One-line translator comment #1
- {% endcomment %}
- {% trans "Translatable literal #1a" %}
- {% comment %}Some random comment
- Some random comment
- Translators: Two-line translator comment #1
- continued here.
- {% endcomment %}
- {% trans "Translatable literal #1b" %}
- {% comment %}Some random comment
- Translators: One-line translator comment #2
- {% endcomment %}
- {% trans "Translatable literal #2a" %}
- {% comment %}Some random comment
- Translators: Two-line translator comment #2
- continued here.
- {% endcomment %}
- {% trans "Translatable literal #2b" %}
- {% comment %}
- Translators: One-line translator comment #3
- {% endcomment %}
- {% trans "Translatable literal #3a" %}
- {% comment %}
- Translators: Two-line translator comment #3
- continued here.
- {% endcomment %}
- {% trans "Translatable literal #3b" %}
- {% comment %} Translators: One-line translator comment #4{% endcomment %}
- {% trans "Translatable literal #4a" %}
- {% comment %} Translators: Two-line translator comment #4
- continued here.{% endcomment %}
- {% trans "Translatable literal #4b" %}
- {% comment %} Translators: One-line translator comment #5 -- with non ASCII characters: áéíóúö{% endcomment %}
- {% trans "Translatable literal #5a" %}
- {% comment %} Translators: Two-line translator comment #5 -- with non ASCII characters: áéíóúö
- continued here.{% endcomment %}
- {% trans "Translatable literal #6b" %}
- {% trans "Translatable literal #7a" context "Special trans context #1" %}
- {% trans "Translatable literal #7b" as var context "Special trans context #2" %}
- {% trans "Translatable literal #7c" context "Special trans context #3" as var %}
- {% trans "Translatable literal #7.1a" | upper context "context #7.1a" %}
- {% trans "Translatable literal #7.1b" |upper as var context "context #7.1b" %}
- {% trans "Translatable literal #7.1c"| upper context "context #7.1c" as var %}
- {% trans "Translatable literal #7.1d"|add:" foo" context "context #7.1d" %}
- {% trans "Translatable literal #7.1e"|add:' ûè本' as var context "context #7.1e" %}
- {% with foo=" foo" %}
- {% trans "Translatable literal #7.1f"|add:foo context "context #7.1f" as var %}
- {% endwith %}
- {% trans "Translatable literal #7.1g"|add:2 context "context #7.1g" as var %}
- {% trans "Translatable literal #7.1h" | add:"foo" | add:2 context "context #7.1h" as var %}
- <!-- Source file inside a msgid, should be left as-is. -->
- {% trans "#: templates/test.html.py" %}
- <!-- Deliberate duplicated string. -->
- {% trans "This literal should be included." %}
- {% blocktrans context "Special blocktrans context #1" %}Translatable literal #8a{% endblocktrans %}
- {% blocktrans count 2 context "Special blocktrans context #2" %}Translatable literal #8b-singular{% plural %}Translatable literal #8b-plural{% endblocktrans %}
- {% blocktrans context "Special blocktrans context #3" count 2 %}Translatable literal #8c-singular{% plural %}Translatable literal #8c-plural{% endblocktrans %}
- {% blocktrans with a=1 context "Special blocktrans context #4" %}Translatable literal #8d {{ a }}{% endblocktrans %}
- {% trans "Translatable literal with context wrapped in single quotes" context 'Context wrapped in single quotes' as var %}
- {% trans "Translatable literal with context wrapped in double quotes" context "Context wrapped in double quotes" as var %}
- {% blocktrans context 'Special blocktrans context wrapped in single quotes' %}Translatable literal with context wrapped in single quotes{% endblocktrans %}
- {% blocktrans context "Special blocktrans context wrapped in double quotes" %}Translatable literal with context wrapped in double quotes{% endblocktrans %}
- {% blocktranslate %}blocktranslate text{% endblocktranslate %}
- {% translate "translate text" %}
- {# BasicExtractorTests.test_blocktranslate_trimmed #}
- {% blocktranslate %}
- Text with a few
- line breaks.
- {% endblocktrans %}
- {% blocktrans trimmed %}
- Again some text with a few
- line breaks, this time
- should be trimmed.
- {% endblocktrans %}
- {% trans "Get my line number" %}
- {% blocktranslate trimmed count counter=mylist|length %}
- First `translate`, then `blocktranslate` with a plural
- {% plural %}
- Plural for a `translate` and `blocktranslate` collision case
- {% endblocktranslate %}
- {% trans "Non-breaking space :" %}
|