diff options
author | sr55 <[email protected]> | 2016-02-06 15:29:34 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-02-06 15:29:34 +0000 |
commit | 8ce01f3f60df3e2065e44bdf2629f81b7b10b2b6 (patch) | |
tree | 3dbce92cee59bcd7b3ff09e8dbce0a7f140ef1c4 /win/CS/HandBrakeWPF/Properties | |
parent | 3053ec908dab32b4da6ce9ec022215087a28a37e (diff) |
WinGui:
- Refractor the Audio and Subtitle Defaults into their own View/ViewModel
- Add a new PopupWindow container system.
- Add "Edit Defaults" for Audio and Subtitles on the Add Preset Pane to make the feature more discoverable. (Note, this does not change the existing settings on the Audio/Subtitle Tabs)
Diffstat (limited to 'win/CS/HandBrakeWPF/Properties')
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs | 47 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/ResourcesUI.resx | 17 |
2 files changed, 64 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs index 0ecbb9446..320c1bc73 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs @@ -556,6 +556,15 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to Save.
+ /// </summary>
+ public static string Generic_Save {
+ get {
+ return ResourceManager.GetString("Generic_Save", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Copy to clipboard.
/// </summary>
public static string LogView_CopyClipboard {
@@ -1564,6 +1573,25 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to Change the behaviour of the audio track selection for this preset.
+ ///This will not affect your current settings in the Audio tab..
+ /// </summary>
+ public static string Preset_AudioDefaults_SubText {
+ get {
+ return ResourceManager.GetString("Preset_AudioDefaults_SubText", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Audio Defaults.
+ /// </summary>
+ public static string Preset_AudioDefaults_Title {
+ get {
+ return ResourceManager.GetString("Preset_AudioDefaults_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Export to file.
/// </summary>
public static string Preset_Export {
@@ -1582,6 +1610,25 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to Change the behaviour of the subtitle track selection for this preset.
+ ///This will not affect your current settings in the Subtitle tab..
+ /// </summary>
+ public static string Preset_SubtitleDefaults_SubText {
+ get {
+ return ResourceManager.GetString("Preset_SubtitleDefaults_SubText", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Subtitle Defaults.
+ /// </summary>
+ public static string Preset_SubtitleDefaults_Title {
+ get {
+ return ResourceManager.GetString("Preset_SubtitleDefaults_Title", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Choose titles:.
/// </summary>
public static string QueueSelectionView_ChooseTitles {
diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx index 98acf368e..bc21ee95d 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx @@ -849,4 +849,21 @@ <data name="MainView_SourceOpen" xml:space="preserve">
<value>Open Source</value>
</data>
+ <data name="Generic_Save" xml:space="preserve">
+ <value>Save</value>
+ </data>
+ <data name="Preset_AudioDefaults_SubText" xml:space="preserve">
+ <value>Change the behaviour of the audio track selection for this preset.
+This will not affect your current settings in the Audio tab.</value>
+ </data>
+ <data name="Preset_AudioDefaults_Title" xml:space="preserve">
+ <value>Audio Defaults</value>
+ </data>
+ <data name="Preset_SubtitleDefaults_SubText" xml:space="preserve">
+ <value>Change the behaviour of the subtitle track selection for this preset.
+This will not affect your current settings in the Subtitle tab.</value>
+ </data>
+ <data name="Preset_SubtitleDefaults_Title" xml:space="preserve">
+ <value>Subtitle Defaults</value>
+ </data>
</root>
\ No newline at end of file |