diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-13 14:48:51 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-13 14:48:51 -0600 |
commit | 4671fda345394dad9ca4278b1cf7b2cdf7d2b4ee (patch) | |
tree | 7783d17b352ac27f8650ea83cfe8aa050d5212cd | |
parent | ab56689017daa985f3938af4710f3c76ad415bda (diff) | |
download | mediagoblin-4671fda345394dad9ca4278b1cf7b2cdf7d2b4ee.tar.lz mediagoblin-4671fda345394dad9ca4278b1cf7b2cdf7d2b4ee.tar.xz mediagoblin-4671fda345394dad9ca4278b1cf7b2cdf7d2b4ee.zip |
Improving <title> on tag page *and* adjusting translation for RTL reasons
Basically moving the variable inside the translation to give
translators more flexibility
-rw-r--r-- | mediagoblin/templates/mediagoblin/listings/tag.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/listings/tag.html b/mediagoblin/templates/mediagoblin/listings/tag.html index 58863015..f797f72f 100644 --- a/mediagoblin/templates/mediagoblin/listings/tag.html +++ b/mediagoblin/templates/mediagoblin/listings/tag.html @@ -26,9 +26,13 @@ tag=tag_slug) }}"> {% endblock mediagoblin_head %} +{% block title %} + {% trans %}Media tagged with: {{ tag_name }}{% endtrans %} — {{ super() }} +{% endblock %} + {% block mediagoblin_content -%} <h1> - {% trans %}Media tagged with:{% endtrans %} {{ tag_name }} + {% trans %}Media tagged with: {{ tag_name }}{% endtrans %} </h1> <div class="container_16 media_gallery"> |