diff --git a/src/components/itemMediaInfo/itemMediaInfo.js b/src/components/itemMediaInfo/itemMediaInfo.js
index 2eda9d046..e32b82138 100644
--- a/src/components/itemMediaInfo/itemMediaInfo.js
+++ b/src/components/itemMediaInfo/itemMediaInfo.js
@@ -72,7 +72,7 @@ import template from './itemMediaInfo.template.html';
html += `
`;
const attributes = [];
if (stream.DisplayTitle) {
- attributes.push(createAttribute('Title', stream.DisplayTitle));
+ attributes.push(createAttribute(globalize.translate('MediaInfoTitle'), stream.DisplayTitle));
}
if (stream.Language && stream.Type !== 'Video') {
attributes.push(createAttribute(globalize.translate('MediaInfoLanguage'), stream.Language));
diff --git a/src/strings/en-us.json b/src/strings/en-us.json
index 240d450ee..d0845124b 100644
--- a/src/strings/en-us.json
+++ b/src/strings/en-us.json
@@ -1005,6 +1005,7 @@
"MediaInfoSampleRate": "Sample rate",
"MediaInfoSize": "Size",
"MediaInfoTimestamp": "Timestamp",
+ "MediaInfoTitle": "Title",
"MediaInfoVideoRange": "Video range",
"MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.",
"Menu": "Menu",