summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-12-11 18:38:47 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-12-11 18:38:47 -0300
commit027418c3f21acf45fbea9b48076112e189d36050 (patch)
tree987355215d763f85242bc2713bcac8bc0db904e7
parent939af7c5828167677f608b91f43e93e83580bb07 (diff)
downloadaskbot-027418c3f21acf45fbea9b48076112e189d36050.tar.gz
askbot-027418c3f21acf45fbea9b48076112e189d36050.tar.bz2
askbot-027418c3f21acf45fbea9b48076112e189d36050.zip
two translated strings in the scope navigation bar
-rw-r--r--askbot/doc/source/contributors.rst1
-rw-r--r--askbot/skins/default/templates/widgets/scope_nav.html2
2 files changed, 2 insertions, 1 deletions
diff --git a/askbot/doc/source/contributors.rst b/askbot/doc/source/contributors.rst
index 30656c60..5da7076d 100644
--- a/askbot/doc/source/contributors.rst
+++ b/askbot/doc/source/contributors.rst
@@ -33,6 +33,7 @@ Programming and documentation
* `Alexander Werner <https://twitter.com/#!/bundeswerner>`_
* Rosandra Cuello Suñol
* `hjwp <https://github.com/hjwp>`_
+* `Jacob Oscarson <http://www.aspektratio.net>`_
Translations
------------
diff --git a/askbot/skins/default/templates/widgets/scope_nav.html b/askbot/skins/default/templates/widgets/scope_nav.html
index 984a8dc1..5f7cc158 100644
--- a/askbot/skins/default/templates/widgets/scope_nav.html
+++ b/askbot/skins/default/templates/widgets/scope_nav.html
@@ -1,6 +1,6 @@
{% if active_tab != "ask" %}
<a class="scope-selector {% if scope == 'all' %}on{% endif %}"
- href="{% url questions %}?scope=all" title="{% trans %}see all questions{% endtrans %}">ALL</a>
+ href="{% url questions %}?scope=all" title="{% trans %}see all questions{% endtrans %}">{% trans %}ALL{% endtrans %}</a>
<a class="scope-selector {% if scope == 'unanswered' %}on{% endif %}"
href="{% url questions %}?scope=unanswered&amp;sort=answers-asc" title="{% trans %}see unanswered questions{% endtrans %}">{% trans %}UNANSWERED{% endtrans %}</a>
{% if request.user.is_authenticated() %}