Trying to create a translation for OSQA
Fist I copied the FR locale to RU, updated the settings. Fine, Most things are working but now everything in the django.po file has been translated but still a few lines show up in English and I I cannot find them..
For example the string
"Most recently updated questions"
in the upper sidebar content right underneath the number of questions. The string is just not present in the django.po
PS: I installed OSQA on webfaction using the wiki script. Any help will be appreciated.
Update
The template sort_tabs contains
{% load i18n %}
{% trans "active" %} {% trans "newest" %} {% trans "hottest" %} {% trans "most voted" %}
but I think the string is coming from the count.html template
{% spaceless %} {% load i18n humanize extra_tags %} {% declare %} answer_count = questions.children_count('answer') {% enddeclare %}
{{ questions.paginator.count }}{{ list_description }}
{% if answer_count %}
{{ answer_count }}{% trans "answers" %}
{% endif %}
{{ questions.paginator.sort_description }}
{% endspaceless %}
that might narrow it down to questions.paginator.sort_description ?