blob: ae3e35245621f1da9d39185cb9d1130ed1cf5d4d (
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
50
51
52
53
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="UserSettingConstants.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Constants for the User Settings Service
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF
{
/// <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 = "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 NativeLanguageForSubtitles = "NativeLanguageSubtitles";
public const string DubMode = "DubMode";
public const string CliExeHash = "CliExeHash";
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";
}
}
|