Browse Source

Fix comment count tooltip

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v11.0RC2
Joas Schilling 7 years ago
parent
commit
c9c64141ee
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/comments/js/filesplugin.js

+ 1
- 1
apps/comments/js/filesplugin.js 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')
});
},

Loading…
Cancel
Save