Do not translate just a variable expansion.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Wed, 12 Dec 2012 20:25:17 +0000 (21:25 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Wed, 12 Dec 2012 20:51:19 +0000 (21:51 +0100)
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.

mediagoblin/templates/mediagoblin/user_pages/collection.html

index 7ea84876fa3a03a4187bf66dbb940829f3c94091..f53c164f00f4f8510564f175ee18a8b910aa0cf0 100644 (file)
     <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) }}