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

Fix comment count tooltip
This commit is contained in:
Lukas Reschke 2016-09-28 23:17:05 +02:00 committed by GitHub
commit 2eab2ffa22
1 changed files with 1 additions and 1 deletions

View File

@ -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')
});
},