diff options
author | sr55 <[email protected]> | 2017-03-16 20:26:05 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-03-16 20:26:14 +0000 |
commit | e359b4e1fceb25ad9e9bd7f9543e50339d688e7a (patch) | |
tree | 01bea01e99706e6b8efdc52dfa5805575f214ef7 /win/CS/HandBrakeWPF/Properties | |
parent | cdf2b1d0efe8265b66df05f428cf01ff67bb4621 (diff) |
WinGui: Add option to show progress percentage in app title bar, and the task tray header and system tray tooltip. (Configured via preferences). #630
Diffstat (limited to 'win/CS/HandBrakeWPF/Properties')
4 files changed, 38 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs index d21853449..d0b3c079b 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/Resources.Designer.cs @@ -1732,6 +1732,16 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to {1}%, Pass {2} of {3}
+ ///Remaining Time: {4}.
+ /// </summary>
+ public static string TaskTrayStatusTitle {
+ get {
+ return ResourceManager.GetString("TaskTrayStatusTitle", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Unknown Error.
/// </summary>
public static string UnknownError {
@@ -1906,5 +1916,14 @@ namespace HandBrakeWPF.Properties { return ResourceManager.GetString("Warning", resourceCulture);
}
}
+
+ /// <summary>
+ /// Looks up a localized string similar to {0} - ({1}%, Pass {2} of {3}).
+ /// </summary>
+ public static string WindowTitleStatus {
+ get {
+ return ResourceManager.GetString("WindowTitleStatus", resourceCulture);
+ }
+ }
}
}
diff --git a/win/CS/HandBrakeWPF/Properties/Resources.resx b/win/CS/HandBrakeWPF/Properties/Resources.resx index ed52a4a8f..1b263c8e9 100644 --- a/win/CS/HandBrakeWPF/Properties/Resources.resx +++ b/win/CS/HandBrakeWPF/Properties/Resources.resx @@ -833,4 +833,11 @@ Your preset file will be archived and new one created. You will need to re-creat <data name="NoAdditionalInformation" xml:space="preserve">
<value>No Additional Information</value>
</data>
+ <data name="WindowTitleStatus" xml:space="preserve">
+ <value>{0} - ({1}%, Pass {2} of {3})</value>
+ </data>
+ <data name="TaskTrayStatusTitle" xml:space="preserve">
+ <value>{1}%, Pass {2} of {3}
+Remaining Time: {4}</value>
+ </data>
</root>
\ No newline at end of file diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs index e04dbe4b5..35d2f6548 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.Designer.cs @@ -1483,6 +1483,15 @@ namespace HandBrakeWPF.Properties { }
/// <summary>
+ /// Looks up a localized string similar to Show the encode status in the application title bar..
+ /// </summary>
+ public static string OptionsView_ShowStatusInTitleBar {
+ get {
+ return ResourceManager.GetString("OptionsView_ShowStatusInTitleBar", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Anamorphic:.
/// </summary>
public static string PictureSettingsView_Anamorphic {
diff --git a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx index 87e584e96..33f0658df 100644 --- a/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx +++ b/win/CS/HandBrakeWPF/Properties/ResourcesUI.resx @@ -893,4 +893,7 @@ This will not affect your current settings in the Subtitle tab.</value> <data name="Options_LowDiskspaceSize" xml:space="preserve">
<value>Low diskspace warning level (GB):</value>
</data>
+ <data name="OptionsView_ShowStatusInTitleBar" xml:space="preserve">
+ <value>Show the encode status in the application title bar.</value>
+ </data>
</root>
\ No newline at end of file |