mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-05 20:11:26 +01:00
fixed #915
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"title": "Recent",
|
||||
"day": "Day",
|
||||
"week": "Week",
|
||||
"month": "Month"
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"title": "Unread",
|
||||
"no_unread_topics": "There are no unread topics.",
|
||||
"mark_all_read": "Mark all as Read",
|
||||
"load_more": "Load More"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="outgoing">
|
||||
<ol class="breadcrumb">
|
||||
<li itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
|
||||
<a href="{relative_path}/" itemprop="url"><span itemprop="title">Home</span></a>
|
||||
<a href="{relative_path}/" itemprop="url"><span itemprop="title">[[global:home]]</span></a>
|
||||
</li>
|
||||
<li class="active" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
|
||||
<span itemprop="title">[[notifications:outgoing_link]]</span>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="{relative_path}/">Home</a></li>
|
||||
<li><a href="{relative_path}/">[[global:home]]</a></li>
|
||||
<li class="active">[[global:header.popular]] <a href="{relative_path}/popular.rss"><i class="fa fa-rss-square"></i></a></li>
|
||||
</ol>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="{relative_path}/">Home</a></li>
|
||||
<li class="active">Recent <a href="{relative_path}/recent.rss"><i class="fa fa-rss-square"></i></a></li>
|
||||
<li><a href="{relative_path}/">[[global:home]]</a></li>
|
||||
<li class="active">[[recent:title]] <a href="{relative_path}/recent.rss"><i class="fa fa-rss-square"></i></a></li>
|
||||
</ol>
|
||||
|
||||
<ul class="nav nav-pills">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<div class="unread">
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="{relative_path}/">[[global:home]]</a></li>
|
||||
<li class="active">{category_name}</li>
|
||||
<li class="active">[[unread:title]]</li>
|
||||
</ol>
|
||||
|
||||
<div class="alert alert-warning {no_topics_message}" id="category-no-topics">
|
||||
|
||||
@@ -589,7 +589,6 @@ var async = require('async'),
|
||||
|
||||
Topics.getUnreadTopics = function(uid, start, stop, callback) {
|
||||
var unreadTopics = {
|
||||
'category_name': 'Unread',
|
||||
'show_sidebar': 'hidden',
|
||||
'show_topic_button': 'hidden',
|
||||
'show_markallread_button': 'show',
|
||||
|
||||
Reference in New Issue
Block a user