fix(lang): fix singular form of season count (#1080)

pull/1081/head
TheCatLady 3 years ago committed by GitHub
parent f28112f057
commit b57645d382
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -72,7 +72,7 @@ const messages = defineMessages({
markavailable: 'Mark as Available',
mark4kavailable: 'Mark 4K as Available',
allseasonsmarkedavailable: '* All seasons will be marked as available.',
seasons: '{seasonCount} Seasons',
seasons: '{seasonCount, plural, one {# Season} other {# Seasons}}',
});
interface TvDetailsProps {

@ -631,7 +631,7 @@
"components.TvDetails.playonplex": "Play on Plex",
"components.TvDetails.recommendations": "Recommendations",
"components.TvDetails.recommendationssubtext": "If you liked {title}, you might also like…",
"components.TvDetails.seasons": "{seasonCount} Seasons",
"components.TvDetails.seasons": "{seasonCount, plural, one {# Season} other {# Seasons}}",
"components.TvDetails.showtype": "Show Type",
"components.TvDetails.similar": "Similar Series",
"components.TvDetails.similarsubtext": "Other series similar to {title}",

Loading…
Cancel
Save