remove direct references to plural translation keys

This commit is contained in:
jeffvli
2026-01-29 19:52:42 -08:00
parent c1f48b21a4
commit 74b0e38f7e
10 changed files with 50 additions and 28 deletions
@@ -19,7 +19,7 @@ interface ArtistListHeaderProps {
export const ArtistListHeader = ({ title }: ArtistListHeaderProps) => {
const { t } = useTranslation();
const pageTitle = title || t('entity.artist_other', { postProcess: 'titleCase' });
const pageTitle = title || t('entity.artist', { count: 2, postProcess: 'titleCase' });
return (
<Stack gap={0}>