Skip to content

Commit

Permalink
fix(lang): manage movie -> manage series (#2963)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCatLady committed Aug 22, 2022
1 parent 0839718 commit f5e6b62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/TvDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const messages = defineMessages({
productioncountries:
'Production {countryCount, plural, one {Country} other {Countries}}',
reportissue: 'Report an Issue',
managemovie: 'Manage Movie',
manageseries: 'Manage Series',
});

interface TvDetailsProps {
Expand Down Expand Up @@ -403,7 +403,7 @@ const TvDetails = ({ tv }: TvDetailsProps) => {
</Tooltip>
)}
{hasPermission(Permission.MANAGE_REQUESTS) && data.mediaInfo && (
<Tooltip content={intl.formatMessage(messages.managemovie)}>
<Tooltip content={intl.formatMessage(messages.manageseries)}>
<Button
buttonType="default"
onClick={() => setShowManager(true)}
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@
"components.TvDetails.episodeRuntime": "Episode Runtime",
"components.TvDetails.episodeRuntimeMinutes": "{runtime} minutes",
"components.TvDetails.firstAirDate": "First Air Date",
"components.TvDetails.managemovie": "Manage Movie",
"components.TvDetails.manageseries": "Manage Series",
"components.TvDetails.network": "{networkCount, plural, one {Network} other {Networks}}",
"components.TvDetails.nextAirDate": "Next Air Date",
"components.TvDetails.originallanguage": "Original Language",
Expand Down

0 comments on commit f5e6b62

Please sign in to comment.