diff --git a/src/components/cardbuilder/cardBuilder.js b/src/components/cardbuilder/cardBuilder.js index 4a1060a808..96f325b3e7 100644 --- a/src/components/cardbuilder/cardBuilder.js +++ b/src/components/cardbuilder/cardBuilder.js @@ -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)); } diff --git a/src/strings/en-us.json b/src/strings/en-us.json index fe75c835c9..dd15fb8d54 100644 --- a/src/strings/en-us.json +++ b/src/strings/en-us.json @@ -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" }