diff --git a/src/admin/components/elements/VersionsCount/index.tsx b/src/admin/components/elements/VersionsCount/index.tsx index cf4f2416fc..f58731fd56 100644 --- a/src/admin/components/elements/VersionsCount/index.tsx +++ b/src/admin/components/elements/VersionsCount/index.tsx @@ -54,7 +54,7 @@ const VersionsCount: React.FC = ({ collection, global, id }) => { el="link" to={versionsURL} > - {t('versionCount', { count: versionCount })} + {t(versionCount === 1 ? 'versionCount_one' : 'versionCount_many', { count: versionCount })} )}