summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-09-28 10:54:37 +0200
committerJoas Schilling <coding@schilljs.com>2016-09-28 10:54:37 +0200
commitc9c64141ee7f72ed39779dbd461e8d939137358b (patch)
tree646372d6250a7e504d67b792e6596d57d7489c06 /apps
parent3e843fcd82e4b9d419bb19da6c6646cf51991b60 (diff)
downloadnextcloud-server-c9c64141ee7f72ed39779dbd461e8d939137358b.tar.gz
nextcloud-server-c9c64141ee7f72ed39779dbd461e8d939137358b.zip
Fix comment count tooltip
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/comments/js/filesplugin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/js/filesplugin.js b/apps/comments/js/filesplugin.js
index ec201d1d3f7..cc419c18ddb 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')
});
},