- Try to preserve some translations (somehow).
- Mark "Tagged with" again for translation.
- Do not translate the empty string
</div>
{% block mediagoblin_footer %}
<footer>
+ {% trans -%}
+ Powered by <a href="http://mediagoblin.org">MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project.
+ {%- endtrans %}
{% trans source_link=app_config['source_link'] -%}
- Powered by <a href="http://mediagoblin.org">MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project. Released under the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPL</a>. <a href="{{ source_link }}">Source code</a> available.
+ Released under the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPL</a>. <a href="{{ source_link }}">Source code</a> available.
{%- endtrans %}
</footer>
{% endblock mediagoblin_footer %}
#}
{% block tags_content -%}
- <h3 class="sidedata">Tagged with</h3>
+ <h3 class="sidedata">{% trans %}Tagged with{% endtrans %}</h3>
<p>
{% for tag in media.tags %}
{% if loop.last %}
class MediaCommentForm(wtforms.Form):
comment_content = wtforms.TextAreaField(
- _(''),
+ '',
[wtforms.validators.Required()])