From 83d10bd4c0ce01c5cf65edeaa46bca19f0a306cb Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 23 Apr 2016 20:17:13 +0100 Subject: WinGui: Fix the Subtitle Defaults popup text. --- win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs | 9 +++++++++ win/CS/HandBrakeWPF/Properties/ResourcesUI.resx | 3 +++ win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) (limited to 'win/CS') diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs index 1eab4eee8..c67fddf27 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs @@ -2132,6 +2132,15 @@ namespace HandBrakeWPF.Properties { } } + /// + /// Looks up a localized string similar to Configure how the Subtitle Tracks are automatically selected and configured when you select a new title or source video.. + /// + public static string SubtitleView_SubtitleDefaultsDescription { + get { + return ResourceManager.GetString("SubtitleView_SubtitleDefaultsDescription", resourceCulture); + } + } + /// /// Looks up a localized string similar to 2-Pass Encoding. /// diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx index 29a0ea5ec..ef6cd111f 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx @@ -869,4 +869,7 @@ This will not affect your current settings in the Subtitle tab. Configure how the Audio Tracks are automatically selected and configured when you select a new title or source video. + + Configure how the Subtitle Tracks are automatically selected and configured when you select a new title or source video. + \ No newline at end of file diff --git a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs index 20fc39918..a73d17182 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs @@ -408,7 +408,7 @@ namespace HandBrakeWPF.ViewModels /// public void ShowSubtitleDefaultsPanel() { - IPopupWindowViewModel popup = new PopupWindowViewModel(this.SubtitleDefaultsViewModel, ResourcesUI.Preset_AudioDefaults_Title, ResourcesUI.AudioView_AudioDefaultsDescription); + IPopupWindowViewModel popup = new PopupWindowViewModel(this.SubtitleDefaultsViewModel, ResourcesUI.Preset_SubtitleDefaults_Title, ResourcesUI.SubtitleView_SubtitleDefaultsDescription); if (this.windowManager.ShowDialog(popup) == true) { // Nothing to do yet, it's by reference. -- cgit v1.2.3