summaryrefslogtreecommitdiffstats
path: root/win/CS/UserSettingConstants.cs
blob: 02c417eb7678cda3c5e1827eb931a18fddca948a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*  UserSettingConstants.cs $
    This file is part of the HandBrake source code.
    Homepage: <http://handbrake.fr/>.
    It may be used under the terms of the GNU General Public License. */

namespace Handbrake
{
    /// <summary>
    /// Constants for the User Settings Service
    /// </summary>
    public class UserSettingConstants
    {
        public const string UpdateStatus = "updateStatus";
        public const string TooltipEnable = "tooltipEnable";
        public const string Skipversion = "skipversion";
        public const string AutoNaming = "autoNaming";
        public const string AutoNamePath = "autoNamePath";
        public const string Appcast_i686 = "appcast_i686";
        public const string Appcast_x64 = "appcast_x64";
        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 NativeLanguageForSubtitles = "NativeLanguageSubtitles";
        public const string DubMode = "DubMode";
        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";
        public const string ShowAdvancedAudioPassthruOpts = "ShowAdvancedAudioPassthruOpts";
    }
}