Show the first user to reply to a tweet as opposed to the latest. Bug 617418.

This commit is contained in:
Fred Wenzel 2010-12-08 15:05:58 -08:00
Родитель 86645ba1fc
Коммит 226c6857d4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,7 @@
<a href="#" class="reply_count" data-count="{{ tweet.reply_count }}">
{% if tweet.reply_count > 1 %}
{{ ngettext('{0} and {1} other replied', '{0} and {1} others replied',
tweet.reply_count - 1)|f(tweet.replies[0].user, tweet.reply_count - 1) }}
tweet.reply_count - 1)|f(tweet.replies[-1].user, tweet.reply_count - 1) }}
{% else %}
{{ '{0} replied'|f(tweet.replies[0].user) }}
{% endif %}