/* UserSettingConstants.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake { /// /// Constants for the User Settings Service /// public class UserSettingConstants { public const string UpdateStatus = "updateStatus"; public const string TooltipEnable = "tooltipEnable"; public const string DefaultPreset = "defaultPreset"; public const string Skipversion = "skipversion"; public const string AutoNaming = "autoNaming"; public const string AutoNamePath = "autoNamePath"; public const string Appcast = "appcast"; public const string Appcast_unstable = "appcast_unstable"; public const string AutoNameFormat = "autoNameFormat"; public const string VLC_Path = "VLC_Path"; public const string MainWindowMinimize = "MainWindowMinimize"; public const string QueryEditorTab = "QueryEditorTab"; public const string PresetNotification = "presetNotification"; public const string TrayIconAlerts = "trayIconAlerts"; public const string LastUpdateCheckDate = "lastUpdateCheckDate"; public const string DaysBetweenUpdateCheck = "daysBetweenUpdateCheck"; public const string UseM4v = "useM4v"; public const string PromptOnUnmatchingQueries = "PromptOnUnmatchingQueries"; public const string NativeLanguage = "NativeLanguage"; public const string DubMode = "DubMode"; public const string CliExeHash = "CliExeHash"; public const string PreviewScanCount = "previewScanCount"; public const string ClearOldLogs = "clearOldLogs"; public const string AutoNameTitleCase = "AutoNameTitleCase"; public const string AutoNameRemoveUnderscore = "AutoNameRemoveUnderscore"; public const string ActivityWindowLastMode = "ActivityWindowLastMode"; public const string UseClosedCaption = "useClosedCaption"; public const string BatchMinDuration = "batchMinDuration"; public const string BatchMaxDuration = "batchMaxDuration"; public const string DefaultPlayer = "defaultPlayer"; public const string SelectedLanguages = "SelectedLanguages"; public const string DubModeAudio = "DubModeAudio"; public const string DubModeSubtitle = "DubModeSubtitle"; public const string AddOnlyOneAudioPerLanguage = "addOnlyOneAudioPerLanguage"; public const string MinTitleLength = "MinTitleLength"; } }