mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -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'>
|
<td class='star'>
|
||||||
<a {{bindAttr class=":star :icon-star starred:starred"}} {{action toggleStar this target="controller"}} href='#' title='{{i18n favorite.help}}'></a>
|
<a {{bindAttr class=":star :icon-star starred:starred"}} {{action toggleStar this target="controller"}} href='#' title='{{i18n favorite.help}}'></a>
|
||||||
</td>
|
</td>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<td class='main-link clearfix'>
|
<td class='main-link clearfix'>
|
||||||
{{view Discourse.TopicStatusView topicBinding="this"}}
|
{{view Discourse.TopicStatusView topicBinding="this"}}
|
||||||
{{{topicLink this showTagIfPresent="controller.category"}}}
|
{{{topicLink this showTagIfPresent="controller.category"}}}
|
||||||
{{#if unread}}
|
{{#if unread}}
|
||||||
<a href="{{lastReadUrl}}" class='badge unread badge-notification' title='{{i18n topic.unread_posts unread="unread"}}'>{{unread}}</a>
|
<a href="{{lastReadUrl}}" class='badge unread badge-notification' title='{{i18n topic.unread_posts unread="unread"}}'>{{unread}}</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if displayNewPosts}}
|
{{#if displayNewPosts}}
|
||||||
<a href="{{lastReadUrl}}" class='badge new-posts badge-notification' title='{{i18n topic.new_posts new_posts="displayNewPosts"}}'>{{displayNewPosts}}</a>
|
<a href="{{lastReadUrl}}" class='badge new-posts badge-notification' title='{{i18n topic.new_posts new_posts="displayNewPosts"}}'>{{displayNewPosts}}</a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if unseen}}
|
{{#if unseen}}
|
||||||
<a href="{{lastReadUrl}}" class='badge new-posts badge-notification' title='{{i18n topic.new}}'><i class='icon icon-asterisk'></i></a>
|
<a href="{{lastReadUrl}}" class='badge new-posts badge-notification' title='{{i18n topic.new}}'><i class='icon icon-asterisk'></i></a>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
@ -32,13 +32,13 @@
|
||||||
|
|
||||||
<td class='num'>
|
<td class='num'>
|
||||||
{{#if like_count}}
|
{{#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}}
|
{{/if}}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class='num'>{{number views numberKey="views_long"}}</td>
|
<td class='num'>{{number views numberKey="views_long"}}</td>
|
||||||
|
|
||||||
{{#if singlePost}}
|
{{#if singlePost}}
|
||||||
<td class='num activity'>
|
<td class='num activity'>
|
||||||
<a href="{{url}}" class='age' title='{{i18n first_post}}: {{{unboundDate created_at}}}'>{{{age}}}</a>
|
<a href="{{url}}" class='age' title='{{i18n first_post}}: {{{unboundDate created_at}}}'>{{{age}}}</a>
|
||||||
</td>
|
</td>
|
||||||
|
@ -49,5 +49,5 @@
|
||||||
</td>
|
</td>
|
||||||
<td class='num activity last'>
|
<td class='num activity last'>
|
||||||
<a href="{{lastPostUrl}}" class='age' title='{{i18n last_post}}: {{{unboundDate last_posted_at}}}'>{{{last_post_age}}}</a>
|
<a href="{{lastPostUrl}}" class='age' title='{{i18n last_post}}: {{{unboundDate last_posted_at}}}'>{{{last_post_age}}}</a>
|
||||||
</td>
|
</td>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -354,7 +354,7 @@ en:
|
||||||
new_posts: "there are {{new_posts}} new posts in this topic since you last read it"
|
new_posts: "there are {{new_posts}} new posts in this topic since you last read it"
|
||||||
likes:
|
likes:
|
||||||
one: "there is 1 like in this topic"
|
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"
|
back_to_list: "Back to Topic List"
|
||||||
options: "Topic Options"
|
options: "Topic Options"
|
||||||
show_links: "show links within this topic"
|
show_links: "show links within this topic"
|
||||||
|
|
Loading…
Reference in a new issue