Merge pull request #1553 from nextcloud/fix-comment-count-translation

Fix comment count tooltip
pull/1565/head
Lukas Reschke 2016-09-28 23:17:05 +07:00 committed by GitHub
commit 2eab2ffa22
1 changed files with 1 additions and 1 deletions

@ -39,7 +39,7 @@
}
return this._commentsUnreadTemplate({
count: count,
countMessage: t('comments', '{count} unread comments', {count: count}),
countMessage: n('comments', '%n unread comment', '%n unread comments', count),
iconUrl: OC.imagePath('core', 'actions/comment')
});
},