blob: 843e0bc9ea4ac9cbde80f1c7d0e9a360e339e8f3 (
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
49
|
/* 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 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";
}
}
|