mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-12 17:05:51 +01:00
fixed translation on recent replies feed
This commit is contained in:
@@ -192,16 +192,18 @@ define(['composer', 'forum/pagination'], function(composer, pagination) {
|
||||
'<strong><span>'+ posts[i].username + '</span></strong>' +
|
||||
'<p>' + posts[i].content + '</p>' +
|
||||
'<span class="pull-right">'+
|
||||
'<a href="' + RELATIVE_PATH + '/topic/' + posts[i].topicSlug + '#' + posts[i].pid + '">posted</a> '+
|
||||
'<a href="' + RELATIVE_PATH + '/topic/' + posts[i].topicSlug + '#' + posts[i].pid + '">[[category:posted]]</a> '+
|
||||
'<span class="timeago" title="' + posts[i].relativeTime + '"></span>' +
|
||||
'</span>'+
|
||||
'</li>';
|
||||
}
|
||||
|
||||
recentReplies.html(replies);
|
||||
translator.translate(replies, function(translatedHTML) {
|
||||
recentReplies.html(translatedHTML);
|
||||
|
||||
$('#category_recent_replies span.timeago').timeago();
|
||||
app.createUserTooltips();
|
||||
});
|
||||
};
|
||||
|
||||
return Category;
|
||||
|
||||
Reference in New Issue
Block a user