OMG. Strings.

This commit is contained in:
gaba
2017-05-25 12:02:26 -04:00
parent 4ff7da864e
commit 492f4a674c
4 changed files with 5 additions and 5 deletions
@@ -21,8 +21,8 @@ const NewCount = (props) => {
props.commentCountCache && newComments > 0 ?
<button onClick={onLoadMoreClick(props)}>
{newComments === 1
? t('framework.new_count', newComments, t('comment'))
: t('framework.new_count', newComments, t('comments'))}
? t('framework.new_count', newComments, t('framework.comment'))
: t('framework.new_count', newComments, t('framework.comments'))}
</button>
: null
}
@@ -61,7 +61,7 @@ class ProfileContainer extends Component {
{me.ignoredUsers && me.ignoredUsers.length
? <div>
<h3>t('framework.ignored_users')</h3>
<h3>{t('framework.ignored_users')}</h3>
<IgnoredUsers
users={me.ignoredUsers}
stopIgnoring={stopIgnoringUser}