diff options
author | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2012-12-12 21:25:17 +0100 |
---|---|---|
committer | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2012-12-12 21:51:19 +0100 |
commit | 248b7ba34639f454c6c4dd56f77433d3fed2e34d (patch) | |
tree | 4ae7a5e9557e7f5e51ba29766f3b9ef0602636ed | |
parent | 13ab48a7c444ffd28a5655b8f80aa4479dcdc58a (diff) | |
download | mediagoblin-248b7ba34639f454c6c4dd56f77433d3fed2e34d.tar.lz mediagoblin-248b7ba34639f454c6c4dd56f77433d3fed2e34d.tar.xz mediagoblin-248b7ba34639f454c6c4dd56f77433d3fed2e34d.zip |
Do not translate just a variable expansion.
No point in translating <p>{{ var }}</p>. Really.
This does not hurt the string freeze, as it removes a
translateable string. So any translations of this string
are just well ... usefuless afterwards.
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/collection.html | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/collection.html b/mediagoblin/templates/mediagoblin/user_pages/collection.html index 7ea84876..f53c164f 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/collection.html +++ b/mediagoblin/templates/mediagoblin/user_pages/collection.html @@ -56,11 +56,9 @@ <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a> {% endif %} - {%- trans collection_description=collection.description -%} <p> - {{ collection_description }} + {{ collection.description }} </p> - {%- endtrans %} {{ collection_gallery(request, collection_items, pagination) }} |