summaryrefslogtreecommitdiffstats
path: root/apps/comments
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-09-28 23:17:05 +0200
committerGitHub <noreply@github.com>2016-09-28 23:17:05 +0200
commit2eab2ffa22451851601d68bd73e0285a8803990e (patch)
tree9761ef7ed510f26e17ce46e556b3e2239615647a /apps/comments
parent0f321fe1161d09e385902b7924c76ca542ce45ce (diff)
parentc9c64141ee7f72ed39779dbd461e8d939137358b (diff)
downloadnextcloud-server-2eab2ffa22451851601d68bd73e0285a8803990e.tar.gz
nextcloud-server-2eab2ffa22451851601d68bd73e0285a8803990e.zip
Merge pull request #1553 from nextcloud/fix-comment-count-translation
Fix comment count tooltip
Diffstat (limited to 'apps/comments')
-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')
});
},