mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
Merge pull request #325 from GrimJu/unstable
Add plural to timeline episode count
This commit is contained in:
@@ -234,7 +234,8 @@
|
||||
},
|
||||
"TIMELINE_PAGE": {
|
||||
"TIMELINE": "Timeline",
|
||||
"EPISODES":"Episodes"
|
||||
"EPISODES_one":"Episode",
|
||||
"EPISODES_other":"Episodes"
|
||||
},
|
||||
"SEARCH": "Search",
|
||||
"TOTAL": "Total",
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user