summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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() %}