From c9c64141ee7f72ed39779dbd461e8d939137358b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 28 Sep 2016 10:54:37 +0200 Subject: [PATCH] Fix comment count tooltip Signed-off-by: Joas Schilling --- apps/comments/js/filesplugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/comments/js/filesplugin.js b/apps/comments/js/filesplugin.js index ec201d1d3f..cc419c18dd 100644 --- a/apps/comments/js/filesplugin.js +++ b/apps/comments/js/filesplugin.js @@ -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') }); },