diff --git a/apps/comments-ui/src/components/content/RepliesPagination.tsx b/apps/comments-ui/src/components/content/RepliesPagination.tsx index 5722a7e844..eef3c942d0 100644 --- a/apps/comments-ui/src/components/content/RepliesPagination.tsx +++ b/apps/comments-ui/src/components/content/RepliesPagination.tsx @@ -8,12 +8,14 @@ type Props = { }; const RepliesPagination: React.FC = ({loadMore, count}) => { const {t} = useAppContext(); - const text = count === 1 ? t('Show 1 more reply') : t('Show {{amount}} more replies', {amount: formatNumber(count)}); + const longText = count === 1 ? t('Show 1 more reply') : t('Show {{amount}} more replies', {amount: formatNumber(count)}); + const shortText = t('{{amount}} more', {amount: formatNumber(count)}); return (
);