// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Constants for the User Settings Service
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF
{
///
/// Constants for the User Settings Service
///
public class UserSettingConstants
{
#region Constants and Fields
///
/// Add Only One Per Langage
///
public const string AddOnlyOneAudioPerLanguage = "addOnlyOneAudioPerLanguage";
///
/// Appcast i686
///
public const string Appcast_i686 = "appcast_i686";
///
/// Appcast 64
///
public const string Appcast_x64 = "appcast_x64";
///
/// Auto name format
///
public const string AutoNameFormat = "autoNameFormat";
///
/// Autoname path
///
public const string AutoNamePath = "autoNamePath";
///
/// Auto Name Remove underscore
///
public const string AutoNameRemoveUnderscore = "AutoNameRemoveUnderscore";
///
/// Auto Name Title Case
///
public const string AutoNameTitleCase = "AutoNameTitleCase";
///
/// Auto Naming
///
public const string AutoNaming = "autoNaming";
///
/// Clear old logs
///
public const string ClearOldLogs = "clearOldLogs";
///
/// Update check interval
///
public const string DaysBetweenUpdateCheck = "daysBetweenUpdateCheck";
///
/// Use Default Player
///
public const string DefaultPlayer = "defaultPlayer";
///
/// Dub mode
///
public const string DubMode = "DubMode";
///
/// Dub Mode Audio
///
public const string DubModeAudio = "DubModeAudio";
///
/// Dub Mode Subs
///
public const string DubModeSubtitle = "DubModeSubtitle";
///
/// Last Update Check
///
public const string LastUpdateCheckDate = "lastUpdateCheckDate";
///
/// Main Window Minimise
///
public const string MainWindowMinimize = "MainWindowMinimize";
///
/// Min Title Length
///
public const string MinTitleLength = "MinTitleLength";
///
/// Native Language Audio
///
public const string NativeLanguage = "NativeLanguage";
///
/// Native Language Subs
///
public const string NativeLanguageForSubtitles = "NativeLanguageSubtitles";
///
/// Preset Notification
///
public const string PresetNotification = "presetNotification";
///
/// Selected Languages
///
public const string SelectedLanguages = "SelectedLanguages";
///
/// AUudio Passthru
///
public const string ShowAdvancedAudioPassthruOpts = "ShowAdvancedAudioPassthruOpts";
///
/// Skip Version
///
public const string Skipversion = "skipversion";
///
/// Update Status
///
public const string UpdateStatus = "updateStatus";
///
/// Closed Captions
///
public const string UseClosedCaption = "useClosedCaption";
///
/// Use m4v
///
public const string UseM4v = "useM4v";
///
/// Vlc Path
///
public const string VLC_Path = "VLC_Path";
///
/// The enable process isolation.
///
public const string EnableProcessIsolation = "EnableProcessIsolation";
///
/// The server port.
///
public const string ServerPort = "ServerPort";
///
/// Enable Debugging features within the GUI.
///
public const string EnableDebugFeatures = "EnableDebugFeatures";
///
/// Enable the use of LibHb instead of HandBrakeCLI
///
public const string EnableLibHb = "EnableLibHb";
///
/// Growl Encodes
///
public const string GrowlEncode = "GrowlEncode";
///
/// Growl Queues
///
public const string GrowlQueue = "GrowlQueue";
///
/// HandBrakes CLI Exe SHA1 Hash
///
public const string HandBrakeExeHash = "HandBrakeExeHash";
///
/// The Instance Id
///
public const string InstanceId = "InstanceId";
///
/// The X264 Stepper
///
public const string X264Step = "X264Step";
///
/// HandBrakes build
///
public const string HandBrakePlatform = "HandBrakePlatform";
///
/// The show advanced tab.
///
public const string ShowAdvancedTab = "ShowAdvancedTab";
///
/// The last preview duration
///
public const string LastPreviewDuration = "LastPreviewDuration";
#endregion
}
}