mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Fixes title regression
This commit is contained in:
parent
88267429c5
commit
0e087e040f
2 changed files with 10 additions and 10 deletions
|
@ -3,17 +3,17 @@
|
|||
<td class='star'>
|
||||
<a {{bindAttr class=":star :icon-star starred:starred"}} {{action toggleStar this target="controller"}} href='#' title='{{i18n favorite.help}}'></a>
|
||||
</td>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
<td class='main-link clearfix'>
|
||||
{{view Discourse.TopicStatusView topicBinding="this"}}
|
||||
{{view Discourse.TopicStatusView topicBinding="this"}}
|
||||
{{{topicLink this showTagIfPresent="controller.category"}}}
|
||||
{{#if unread}}
|
||||
<a href="{{lastReadUrl}}" class='badge unread badge-notification' title='{{i18n topic.unread_posts unread="unread"}}'>{{unread}}</a>
|
||||
{{/if}}
|
||||
{{#if displayNewPosts}}
|
||||
<a href="{{lastReadUrl}}" class='badge new-posts badge-notification' title='{{i18n topic.new_posts new_posts="displayNewPosts"}}'>{{displayNewPosts}}</a>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{#if unseen}}
|
||||
<a href="{{lastReadUrl}}" class='badge new-posts badge-notification' title='{{i18n topic.new}}'><i class='icon icon-asterisk'></i></a>
|
||||
{{/if}}
|
||||
|
@ -32,13 +32,13 @@
|
|||
|
||||
<td class='num'>
|
||||
{{#if like_count}}
|
||||
<a href='{{url}}{{#if has_best_of}}/best_of{{/if}}' title='{{i18n topic.likes likes="like_count"}}'>{{like_count}} <i class='icon-heart'></i></a>
|
||||
<a href='{{url}}{{#if has_best_of}}/best_of{{/if}}' title='{{i18n topic.likes count="like_count"}}'>{{like_count}} <i class='icon-heart'></i></a>
|
||||
{{/if}}
|
||||
</td>
|
||||
|
||||
<td class='num'>{{number views numberKey="views_long"}}</td>
|
||||
|
||||
{{#if singlePost}}
|
||||
|
||||
<td class='num'>{{number views numberKey="views_long"}}</td>
|
||||
|
||||
{{#if singlePost}}
|
||||
<td class='num activity'>
|
||||
<a href="{{url}}" class='age' title='{{i18n first_post}}: {{{unboundDate created_at}}}'>{{{age}}}</a>
|
||||
</td>
|
||||
|
@ -49,5 +49,5 @@
|
|||
</td>
|
||||
<td class='num activity last'>
|
||||
<a href="{{lastPostUrl}}" class='age' title='{{i18n last_post}}: {{{unboundDate last_posted_at}}}'>{{{last_post_age}}}</a>
|
||||
</td>
|
||||
</td>
|
||||
{{/if}}
|
||||
|
|
|
@ -354,7 +354,7 @@ en:
|
|||
new_posts: "there are {{new_posts}} new posts in this topic since you last read it"
|
||||
likes:
|
||||
one: "there is 1 like in this topic"
|
||||
other: "there are {{likes}} likes in this topic"
|
||||
other: "there are {{count}} likes in this topic"
|
||||
back_to_list: "Back to Topic List"
|
||||
options: "Topic Options"
|
||||
show_links: "show links within this topic"
|
||||
|
|
Loading…
Reference in a new issue