diff options
author | sr55 <[email protected]> | 2009-07-17 23:37:33 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-07-17 23:37:33 +0000 |
commit | 8094592a533ca931ee4c409d7870b158ca9a1592 (patch) | |
tree | ef74d7eb3c3debe661cfa4278161183ea8ac97c9 /win/C#/Properties | |
parent | f067608af197f3c6ebc47685274486854bb04a77 (diff) |
WinGui:
- Added new options: preferred language, "Dub Foreign language audio" and "Use Foreign language audio and Subtitles"
- Changed built-in language list to native spellings.
- Fixes to CLI Scan Parser AudioTrack.\
- Note: Subtitles panel is not hooked up for this yet.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2709 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r-- | win/C#/Properties/Settings.Designer.cs | 26 | ||||
-rw-r--r-- | win/C#/Properties/Settings.settings | 6 |
2 files changed, 31 insertions, 1 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index d74054426..f1cc044f0 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
-// Runtime Version:2.0.50727.4918
+// Runtime Version:2.0.50727.3082
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -417,5 +417,29 @@ namespace Handbrake.Properties { this["PromptOnUnmatchingQueries"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("Any")]
+ public string NativeLanguage {
+ get {
+ return ((string)(this["NativeLanguage"]));
+ }
+ set {
+ this["NativeLanguage"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("False")]
+ public bool DubAudio {
+ get {
+ return ((bool)(this["DubAudio"]));
+ }
+ set {
+ this["DubAudio"] = value;
+ }
+ }
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index 5f43ded6e..ebd6f44f2 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -101,5 +101,11 @@ <Setting Name="PromptOnUnmatchingQueries" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
+ <Setting Name="NativeLanguage" Type="System.String" Scope="User">
+ <Value Profile="(Default)">Any</Value>
+ </Setting>
+ <Setting Name="DubAudio" Type="System.Boolean" Scope="User">
+ <Value Profile="(Default)">False</Value>
+ </Setting>
</Settings>
</SettingsFile>
\ No newline at end of file |