diff --git a/dashboard-ui/scripts/metadatasubtitles.js b/dashboard-ui/scripts/metadatasubtitles.js
index 81e90d4a9b..a95deb8916 100644
--- a/dashboard-ui/scripts/metadatasubtitles.js
+++ b/dashboard-ui/scripts/metadatasubtitles.js
@@ -7,6 +7,7 @@
$('#chkSkipIfGraphicalSubsPresent', page).checked(config.SkipIfEmbeddedSubtitlesPresent);
$('#chkSkipIfAudioTrackPresent', page).checked(config.SkipIfAudioTrackMatches);
+ $('#chkRequirePerfectMatch', page).checked(config.RequirePerfectMatch);
$('#txtOpenSubtitleUsername', page).val(config.OpenSubtitlesUsername);
$('#txtOpenSubtitlePassword', page).val('');
@@ -50,6 +51,7 @@
config.SkipIfEmbeddedSubtitlesPresent = $('#chkSkipIfGraphicalSubsPresent', form).checked();
config.SkipIfAudioTrackMatches = $('#chkSkipIfAudioTrackPresent', form).checked();
+ config.RequirePerfectMatch = $('#chkRequirePerfectMatch', form).checked();
config.OpenSubtitlesUsername = $('#txtOpenSubtitleUsername', form).val();
diff --git a/dashboard-ui/strings/en-US.json b/dashboard-ui/strings/en-US.json
index 0f73e32e86..4cf6cd1478 100644
--- a/dashboard-ui/strings/en-US.json
+++ b/dashboard-ui/strings/en-US.json
@@ -1440,8 +1440,6 @@
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams in hardware.",
"ButtonRepeat": "Repeat",
"LabelEnableThisTuner": "Enable this tuner",
"LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
@@ -2342,5 +2340,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
diff --git a/dashboard-ui/strings/server.json b/dashboard-ui/strings/server.json
index bab09f437c..4cf6cd1478 100644
--- a/dashboard-ui/strings/server.json
+++ b/dashboard-ui/strings/server.json
@@ -2340,5 +2340,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}