Removing Count from replies button

This commit is contained in:
Belen Curcio
2017-09-21 09:14:02 -03:00
parent abdb4cbe3e
commit 3ef9bd5e52
4 changed files with 4 additions and 10 deletions
@@ -9,11 +9,8 @@ class LoadMore extends React.Component {
if (!count) {
return t('framework.show_all_replies');
}
if (count === 1) {
return t('framework.show_1_more_reply');
}
return t('framework.show_x_more_replies', count);
return t('framework.show_more_replies');
}
render () {