Merge pull request #3356 from SenorSmartyPants/SpecialFeaturesCardText

Special Features: Display extraType as secondaryText on card
This commit is contained in:
Bill Thornton
2022-02-09 09:47:03 -05:00
committed by GitHub
2 changed files with 14 additions and 1 deletions
@@ -856,6 +856,10 @@ import ServerConnections from '../ServerConnections';
}
}
if (item.ExtraType && item.ExtraType !== 'Unknown') {
lines.push(globalize.translate(item.ExtraType));
}
if (options.showItemCounts) {
lines.push(getItemCountsHtml(options, item));
}
+10 -1
View File
@@ -1608,5 +1608,14 @@
"UnknownVideoStreamInfo": "The video stream info is unknown",
"UnknownAudioStreamInfo": "The audio stream info is unknown",
"DirectPlayError": "There was an error starting direct playback",
"SelectAll": "Select All"
"SelectAll": "Select All",
"Clip": "Featurette",
"Trailer": "Trailer",
"BehindTheScenes": "Behind the Scenes",
"DeletedScene": "Deleted Scene",
"Interview": "Interview",
"Scene": "Scene",
"Sample": "Sample",
"ThemeSong": "Theme Song",
"ThemeVideo": "Theme Video"
}