summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Oscarson <jacob@plexical.com>2011-12-08 18:43:09 +0100
committerJacob Oscarson <jacob@plexical.com>2011-12-08 18:43:09 +0100
commit0cb99b7c81feb014fe57b79ce75689f65ceddbaa (patch)
tree3e9d39e1df39dd37ab5137494b27587f9b885856
parent24970a74d0c452b56d311cbda857865c026e3063 (diff)
downloadaskbot-0cb99b7c81feb014fe57b79ce75689f65ceddbaa.tar.gz
askbot-0cb99b7c81feb014fe57b79ce75689f65ceddbaa.tar.bz2
askbot-0cb99b7c81feb014fe57b79ce75689f65ceddbaa.zip
Made two untranslated strings translated
-rw-r--r--askbot/skins/default/templates/widgets/scope_nav.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/askbot/skins/default/templates/widgets/scope_nav.html b/askbot/skins/default/templates/widgets/scope_nav.html
index 3b6d2182..984a8dc1 100644
--- a/askbot/skins/default/templates/widgets/scope_nav.html
+++ b/askbot/skins/default/templates/widgets/scope_nav.html
@@ -2,10 +2,10 @@
<a class="scope-selector {% if scope == 'all' %}on{% endif %}"
href="{% url questions %}?scope=all" title="{% trans %}see all questions{% endtrans %}">ALL</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 %}">UNANSWERED</a>
+ href="{% url questions %}?scope=unanswered&amp;sort=answers-asc" title="{% trans %}see unanswered questions{% endtrans %}">{% trans %}UNANSWERED{% endtrans %}</a>
{% if request.user.is_authenticated() %}
<a class="scope-selector {% if scope == 'favorite' %}on{% endif %}"
- href="{% url questions %}?scope=favorite" title="{% trans %}see your followed questions{% endtrans %}">FOLLOWED</a>
+ href="{% url questions %}?scope=favorite" title="{% trans %}see your followed questions{% endtrans %}">{% trans %}FOLLOWED{% endtrans %}</a>
{% endif %}
{% else %}
<div class="scope-selector ask-message">{% trans %}Please ask your question here{% endtrans %}</div>