Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Develop #14

Merged
merged 3 commits into from
Jun 13, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions june/_locale/zh_CN.csv
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"replies","回复"
"Last reply at","最后回复于"
"reply at","回复于"
"no reply","没有回复"
# topic voting
"Can't vote your own topic","不能对你自己的主题进行评分"
"Cancel your vote first","请先取消原来的评分"
Expand Down
5 changes: 3 additions & 2 deletions june/_templates/module/topic_cell.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ <h3><a href="{{topiclink(topic)}}">{{topic.title}}</a></h3>
<div class="article-meta">
by <a href="/member/{{topic.user.username}}">{{topic.user.username}}</a> •
in <a href="/node/{{topic.node.slug}}">{{topic.node.title}}</a> •
{% if topic.last_reply_time %}
<time datetime="{{xmldatetime(topic.created)}}" title="created">{{timesince(topic.created, locale.code)}}</time>•
{% if topic.reply_count %}
<time datetime="{{xmldatetime(topic.last_reply_time)}}" title="replied">{{timesince(topic.last_reply_time, locale.code)}}</time>
{% else %}
<time datetime="{{xmldatetime(topic.created)}}" title="created">{{timesince(topic.created, locale.code)}}</time>
{{_("no reply")}}
{% end %}
• {{topic.hits or 1}} {{_("hits")}}
</div>
Expand Down