diff options
author | sr55 <[email protected]> | 2016-10-30 19:51:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-10-30 19:51:23 +0000 |
commit | 2c2947ac86ffbf4f5fa9111847ac31efd75c7d05 (patch) | |
tree | dadb6a1052eb94ec8c092b8c71151f73eaf69f3b /win | |
parent | f44d6ec35a93ee36a2ce216b13ec0de68eb90f87 (diff) |
WinGui: Update status bar label text to say "errors or cancellations" to better handle the HB_ERROR_CANCELED change. Partially fixes #366 . Full implementation will come after 1.0
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_error_code.cs | 3 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.Designer.cs | 2 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/Resources.resx | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_error_code.cs b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_error_code.cs index e9f2b3524..01995feff 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_error_code.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/HbLib/hb_error_code.cs @@ -18,6 +18,7 @@ namespace HandBrake.ApplicationServices.Interop.HbLib HB_ERROR_CANCELED,
HB_ERROR_WRONG_INPUT,
HB_ERROR_INIT,
- HB_ERROR_UNKNOWN
+ HB_ERROR_UNKNOW,
+ HB_ERROR_READ
}
}
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index 3e5d4914b..e8e956363 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -858,7 +858,7 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
- /// Looks up a localized string similar to with {0} errors detected..
+ /// Looks up a localized string similar to with {0} errors or cancellations detected..
/// </summary>
public static string Main_QueueFinishedErrors {
get {
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx index 32962807b..be0adb41f 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.resx +++ b/win/CS/HandBrakeWPF/Properties/Resources.resx @@ -729,7 +729,7 @@ If it fails, it will archive off the old file and create a new one.</value> Your old presets file was archived to:</value>
</data>
<data name="Main_QueueFinishedErrors" xml:space="preserve">
- <value> with {0} errors detected.</value>
+ <value> with {0} errors or cancellations detected.</value>
</data>
<data name="MainViewModel_LowDiskSpace" xml:space="preserve">
<value>Low Disk Space</value>
|