1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Fix an issue with the language on status labels for inCinemas and added translation to the movieStatus variable (#4986)

Fix issue where status text was not consistent across all 3 index views and the details
This commit is contained in:
nitsua
2020-09-10 11:04:52 -04:00
committed by GitHub
parent df96203914
commit 7019c8587b
6 changed files with 29 additions and 26 deletions
@@ -87,6 +87,7 @@ class MovieIndexPoster extends Component {
title,
monitored,
hasFile,
isAvailable,
status,
titleSlug,
images,
@@ -228,6 +229,7 @@ class MovieIndexPoster extends Component {
detailedProgressBar={detailedProgressBar}
queueStatus={queueStatus}
queueState={queueState}
isAvailable={isAvailable}
/>
{
@@ -282,6 +284,7 @@ MovieIndexPoster.propTypes = {
title: PropTypes.string.isRequired,
monitored: PropTypes.bool.isRequired,
hasFile: PropTypes.bool.isRequired,
isAvailable: PropTypes.bool.isRequired,
status: PropTypes.string.isRequired,
titleSlug: PropTypes.string.isRequired,
images: PropTypes.arrayOf(PropTypes.object).isRequired,