diff options
author | sr55 <[email protected]> | 2019-07-05 23:11:04 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-07-05 23:11:22 +0100 |
commit | cfb4a33b6eb05db67406010299dfb883de9b60ed (patch) | |
tree | d1eae10d1b0ee12b1b4970376a4d068832eb6300 /win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | |
parent | faf10b6ae3683e7361c0907255ddb3066b651bb0 (diff) |
WinGui: Build out code for active monitoring of storage and battery power on the system. (Similar to what the LinUI does)
- Automatic pause on "Low" or "Critical" battery alarms. The % level is set in Windows power settings. Automatic Resume when AC returns, if it was paused by an alarm.
- Automatic encode pause when destination drive drops below 2GB. (May make this a preference set later)
- Behaviour of pause queue on low disk space with a user defined level in preferences is unchanged.
#2109 #2181
Diffstat (limited to 'win/CS/HandBrakeWPF/Properties/Resources.Designer.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index 892c484be..9ad37148d 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -5192,6 +5192,42 @@ namespace HandBrakeWPF.Properties { } /// <summary> + /// Looks up a localized string similar to AC Mains power detected. Resuming encode... ({0} %). + /// </summary> + public static string SystemService_ACMains { + get { + return ResourceManager.GetString("SystemService_ACMains", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to System Battery Critical! ({0} %). + /// </summary> + public static string SystemService_CriticalBattery { + get { + return ResourceManager.GetString("SystemService_CriticalBattery", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to System Battery Low! ({0} %). Your encode has been paused to protect the system. System sleep is set to allowed!. + /// </summary> + public static string SystemService_LowBatteryLog { + get { + return ResourceManager.GetString("SystemService_LowBatteryLog", resourceCulture); + } + } + + /// <summary> + /// Looks up a localized string similar to Remaining drive storage has dropped below {0} GB on the destination drive. Pausing encode.... + /// </summary> + public static string SystemService_LowDiskSpaceLog { + get { + return ResourceManager.GetString("SystemService_LowDiskSpaceLog", resourceCulture); + } + } + + /// <summary> /// Looks up a localized string similar to {1}%, Pass {2} of {3} ///Remaining Time: {4}. /// </summary> |