mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #3356 from SenorSmartyPants/SpecialFeaturesCardText
Special Features: Display extraType as secondaryText on card
This commit is contained in:
commit
443dac94d7
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) {
|
if (options.showItemCounts) {
|
||||||
lines.push(getItemCountsHtml(options, item));
|
lines.push(getItemCountsHtml(options, item));
|
||||||
}
|
}
|
||||||
|
|
|
@ -1608,5 +1608,14 @@
|
||||||
"UnknownVideoStreamInfo": "The video stream info is unknown",
|
"UnknownVideoStreamInfo": "The video stream info is unknown",
|
||||||
"UnknownAudioStreamInfo": "The audio stream info is unknown",
|
"UnknownAudioStreamInfo": "The audio stream info is unknown",
|
||||||
"DirectPlayError": "There was an error starting direct playback",
|
"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"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue