diff options
author | sr55 <[email protected]> | 2016-04-23 20:17:13 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-04-23 20:17:13 +0100 |
commit | 83d10bd4c0ce01c5cf65edeaa46bca19f0a306cb (patch) | |
tree | 7c7fdefaf80018d85cad0c7d59373db85e52cede /win/CS/HandBrakeWPF | |
parent | 59853dd5e1f2b504167340fa11c79febe18b8f34 (diff) |
WinGui: Fix the Subtitle Defaults popup text.
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs | 9 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/ResourcesUI.resx | 3 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs | 2 |
3 files changed, 13 insertions, 1 deletions
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 @@ -2133,6 +2133,15 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// 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..
+ /// </summary>
+ public static string SubtitleView_SubtitleDefaultsDescription {
+ get {
+ return ResourceManager.GetString("SubtitleView_SubtitleDefaultsDescription", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to 2-Pass Encoding.
/// </summary>
public static string VideoView_2Pass {
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.</value> <data name="AudioView_AudioDefaultsDescription" xml:space="preserve">
<value>Configure how the Audio Tracks are automatically selected and configured when you select a new title or source video.</value>
</data>
+ <data name="SubtitleView_SubtitleDefaultsDescription" xml:space="preserve">
+ <value>Configure how the Subtitle Tracks are automatically selected and configured when you select a new title or source video.</value>
+ </data>
</root>
\ 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 /// </summary>
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.
|