import React, {PropTypes} from 'react'; import {I18n} from '../coral-framework'; const name = 'coral-plugin-comment-count'; const CommentCount = ({count}) => { return
{`${count} ${count === 1 ? lang.t('comment.comment') : lang.t('comment_plural')}`}
; }; CommentCount.propTypes = { count: PropTypes.number.isRequired }; export default CommentCount; const lang = new I18n();