Add plural to timeline episode count

This commit is contained in:
GrimJu
2025-02-21 22:37:49 +01:00
parent 23860d89bb
commit 4e9a5d3d70
2 changed files with 4 additions and 2 deletions

View File

@@ -234,7 +234,8 @@
},
"TIMELINE_PAGE": {
"TIMELINE": "Timeline",
"EPISODES":"Episodes"
"EPISODES_one":"Episode",
"EPISODES_other":"Episodes"
},
"SEARCH": "Search",
"TOTAL": "Total",

View File

@@ -76,7 +76,8 @@ const TimeLineTextContent = (props) => {
</Typography>
{MediaType === MEDIA_TYPES.Shows && EpisodeCount && (
<Typography>
{EpisodeCount} <Trans i18nKey="TIMELINE_PAGE.EPISODES" />
{EpisodeCount}{" "}
<Trans i18nKey="TIMELINE_PAGE.EPISODES" count={+EpisodeCount} />
</Typography>
)}
</div>