mirror of
https://github.com/wassname/talk.git
synced 2026-09-12 13:01:11 +08:00
OMG. Strings.
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user